mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-01 20:49:35 -05:00
- extented Referral chasing (loop detection, hop limit, Rebind) - support for Server Controls - fixed many bugs and memory leaks
30 lines
506 B
C++
30 lines
506 B
C++
/*
|
|
* Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
|
|
#ifndef LDAP_MOD_LIST_H
|
|
#define LDAP_MOD_LIST_H
|
|
|
|
#include <ldap.h>
|
|
#include <list>
|
|
#include "LDAPModification.h"
|
|
|
|
typedef list<LDAPModification> ModList;
|
|
|
|
class LDAPModList{
|
|
|
|
public :
|
|
LDAPModList();
|
|
LDAPModList(const LDAPModList&);
|
|
|
|
void addModification(const LDAPModification &mod);
|
|
LDAPMod** toLDAPModArray();
|
|
|
|
private :
|
|
ModList m_modList;
|
|
};
|
|
#endif //LDAP_MOD_LIST_H
|
|
|
|
|