mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-21 07:09:34 -05:00
25 lines
440 B
C
25 lines
440 B
C
|
|
/*
|
||
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
||
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
||
|
|
*/
|
||
|
|
|
||
|
|
// $Id: LDAPControl.h,v 1.4 2000/08/31 17:43:48 rhafer Exp $
|
||
|
|
|
||
|
|
#ifndef LDAP_CONTROL_H
|
||
|
|
#define LDAP_CONTROL_H
|
||
|
|
|
||
|
|
#include <lber.h>
|
||
|
|
|
||
|
|
class LDAPCtrl{
|
||
|
|
private :
|
||
|
|
char *m_oid;
|
||
|
|
BerValue *m_data;
|
||
|
|
bool m_isCritical;
|
||
|
|
|
||
|
|
public :
|
||
|
|
LDAPCtrl(char *oid, bool critical, char *value=0, int length=0);
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif //LDAP_CONTROL_H
|