blob: 91fc04a45eafe4eaad85c7f0a518d2a4a1acd300 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// $OpenLDAP$
/*
* Copyright 2000-2021 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#ifndef LDAP_SEARCH_REQUEST_H
#define LDAP_SEARCH_REQUEST_H
#include <queue>
#include <LDAPRequest.h>
class LDAPSearchReference;
class LDAPReferral;
class LDAPUrl;
class LDAPSearchRequest : public LDAPRequest{
public :
LDAPSearchRequest(const LDAPSearchRequest& req);
LDAPSearchRequest(const std::string& base, int scope, const std::string& filter,
const StringList& attrs, bool attrsOnly,
LDAPAsynConnection *connect,
const LDAPConstraints* cons, bool isReferral=false,
const LDAPRequest* parent=0);
virtual ~LDAPSearchRequest();
virtual LDAPMessageQueue* sendRequest();
virtual LDAPRequest* followReferral(LDAPMsg* ref);
virtual bool equals(const LDAPRequest* req) const;
private :
std::string m_base;
int m_scope;
std::string m_filter;
StringList m_attrs;
bool m_attrsOnly;
//no default constructor
LDAPSearchRequest(){};
};
#endif //LDAP_SEARCH_REQUEST_H
|