mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
- extented Referral chasing (loop detection, hop limit, Rebind) - support for Server Controls - fixed many bugs and memory leaks
25 lines
747 B
C++
25 lines
747 B
C++
/*
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
#ifndef LDAP_DELETE_REQUEST_H
|
|
#define LDAP_DELETE_REQUEST_H
|
|
|
|
#include "LDAPRequest.h"
|
|
class LDAPMessageQueue;
|
|
|
|
class LDAPDeleteRequest : public LDAPRequest{
|
|
public :
|
|
LDAPDeleteRequest(const LDAPDeleteRequest& req);
|
|
LDAPDeleteRequest(const string& dn, LDAPAsynConnection *connect,
|
|
const LDAPConstraints *cons, bool isReferral=false,
|
|
const LDAPRequest* parent=0);
|
|
virtual ~LDAPDeleteRequest();
|
|
virtual LDAPMessageQueue* sendRequest();
|
|
virtual LDAPRequest* followReferral(LDAPMsg* refs);
|
|
|
|
private :
|
|
string m_dn;
|
|
};
|
|
#endif //LDAP_DELETE_REQUEST_H
|