mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-19 21:32:58 -05:00
- extented Referral chasing (loop detection, hop limit, Rebind) - support for Server Controls - fixed many bugs and memory leaks
30 lines
593 B
C++
30 lines
593 B
C++
/*
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
|
|
#ifndef LDAP_SEARCH_REFERENCE_H
|
|
#define LDAP_SEARCH_REFERENCE_H
|
|
|
|
#include "LDAPMessage.h"
|
|
#include "LDAPUrlList.h"
|
|
|
|
class LDAPRequest;
|
|
class LDAPUrl;
|
|
|
|
class LDAPSearchReference : public LDAPMsg{
|
|
|
|
public :
|
|
LDAPSearchReference(const LDAPRequest* req, LDAPMessage* msg);
|
|
~LDAPSearchReference();
|
|
const LDAPUrlList& getUrls() const;
|
|
|
|
private :
|
|
LDAPUrlList m_urlList;
|
|
LDAPSearchReference();
|
|
};
|
|
|
|
|
|
|
|
#endif //LDAP_SEARCH_REFERENCE_H
|