mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-15 03:14:24 -05:00
- extented Referral chasing (loop detection, hop limit, Rebind) - support for Server Controls - fixed many bugs and memory leaks
25 lines
551 B
C++
25 lines
551 B
C++
/*
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
|
|
#ifndef LDAP_SEARCH_RESULT_H
|
|
#define LDAP_SEARCH_RESULT_H
|
|
|
|
#include "LDAPMessage.h"
|
|
#include "LDAPEntry.h"
|
|
|
|
class LDAPRequest;
|
|
|
|
class LDAPSearchResult : public LDAPMsg{
|
|
public:
|
|
LDAPSearchResult(const LDAPRequest *req, LDAPMessage *msg);
|
|
LDAPSearchResult(const LDAPSearchResult& res);
|
|
virtual ~LDAPSearchResult();
|
|
const LDAPEntry* getEntry() const;
|
|
|
|
private:
|
|
LDAPEntry *entry;
|
|
};
|
|
#endif //LDAP_SEARCH_RESULT_H
|