openldap/contrib/ldapc++/src/LDAPSearchReference.h
Ralf Haferkamp 11fbe2a45c - removed char* in favour of string
- extented Referral chasing (loop detection, hop limit, Rebind)
- support for Server Controls
- fixed many bugs and memory leaks
2000-10-03 18:25:34 +00:00

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