openldap/contrib/ldapc++/src/LDAPExtRequest.h
Ralf Haferkamp b1957678d4 - Fixed some memory leak detected by Jeff Costlow <j.costlow@f5.com>
- Fixed some trouble time.h / sys/time.h
- modified include statements
2001-03-15 11:07:58 +00:00

27 lines
747 B
C++

/*
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
#ifndef LDAP_EXT_REQUEST_H
#define LDAP_EXT_REQUEST_H
#include <LDAPRequest.h>
class LDAPExtRequest : LDAPRequest {
public:
LDAPExtRequest(const LDAPExtRequest& req);
LDAPExtRequest(const string& oid, const string& data,
LDAPAsynConnection *connect, const LDAPConstraints *cons,
bool isReferral=false, const LDAPRequest* parent=0);
virtual ~LDAPExtRequest();
virtual LDAPMessageQueue* sendRequest();
virtual LDAPRequest* followReferral(LDAPMsg* urls);
private:
string m_oid;
string m_data;
};
#endif // LDAP_EXT_REQUEST_H