mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-25 16:22:53 -05:00
* javascript * kernel * ldap * length * macros * maintained * manager * matching * maximum * mechanism * memory * method * mimic * minimum * modifiable * modifiers * modifying * multiple * necessary * normalized * objectclass * occurrence * occurring * offered * operation * original * overridden * parameter * permanent * preemptively * printable * protocol * provider * really * redistribution * referenced * refresh * regardless * registered * request * reserved * resource * response * sanity * separated * setconcurrency * should * specially * specifies * structure * structures * subordinates * substitution * succeed * successful * successfully * sudoers * sufficient * superiors * supported * synchronization * terminated * they're * through * traffic * transparent * unsigned * unsupported * version * absence * achieves * adamson * additional * address * against * appropriate * architecture * associated * async * attribute * authentication * authorized * auxiliary * available * begin * beginning * buffered * canonical * certificate * charray * check * class * compatibility * compilation * component * configurable * configuration * configure * conjunction * constraints * constructor * contained * containing * continued * control * convenience * correspond * credentials * cyrillic * database * definitions * deloldrdn * dereferencing * destroy * distinguish * documentation * emmanuel * enabled * entry * enumerated * everything * exhaustive * existence * existing * explicitly * extract * fallthru * fashion * february * finally * function * generically * groupname * happened * implementation * including * initialization * initializes * insensitive * instantiated * instantiation * integral * internal * iterate
27 lines
673 B
C++
27 lines
673 B
C++
// $OpenLDAP$
|
|
/*
|
|
* Copyright 2000-2017 The OpenLDAP Foundation, All Rights Reserved.
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
*/
|
|
|
|
#ifndef LDAP_REBIND_H
|
|
#define LDAP_REBIND_H
|
|
|
|
#include <string>
|
|
#include <LDAPRebindAuth.h>
|
|
|
|
/**
|
|
* Just an abstract class to provide a mechanism for rebind to another
|
|
* server when chasing referrals. Clients have to implement a class
|
|
* derived from this. To use authentication other than anonymous for
|
|
* referral chasing
|
|
*/
|
|
|
|
class LDAPRebind{
|
|
public:
|
|
virtual ~LDAPRebind() {}
|
|
virtual LDAPRebindAuth* getRebindAuth(const std::string& hostname,
|
|
int port) const = 0;
|
|
};
|
|
#endif //LDAP_REBIND_H
|
|
|