2000-09-01 14:46:32 -04:00
|
|
|
/*
|
|
|
|
|
* 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{
|
|
|
|
|
|
2000-10-03 14:25:34 -04:00
|
|
|
public :
|
|
|
|
|
LDAPSearchReference(const LDAPRequest* req, LDAPMessage* msg);
|
|
|
|
|
~LDAPSearchReference();
|
|
|
|
|
const LDAPUrlList& getUrls() const;
|
|
|
|
|
|
2000-09-01 14:46:32 -04:00
|
|
|
private :
|
|
|
|
|
LDAPUrlList m_urlList;
|
|
|
|
|
LDAPSearchReference();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //LDAP_SEARCH_REFERENCE_H
|