From 5ea77a75dd2d2158401331879f3c8f47940a732c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 18:35:32 +0200 Subject: Adding upstream version 2.5.13+dfsg. Signed-off-by: Daniel Baumann --- contrib/ldapc++/src/LDAPRebindAuth.h | 55 ++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 contrib/ldapc++/src/LDAPRebindAuth.h (limited to 'contrib/ldapc++/src/LDAPRebindAuth.h') diff --git a/contrib/ldapc++/src/LDAPRebindAuth.h b/contrib/ldapc++/src/LDAPRebindAuth.h new file mode 100644 index 0000000..60c12ac --- /dev/null +++ b/contrib/ldapc++/src/LDAPRebindAuth.h @@ -0,0 +1,55 @@ +// $OpenLDAP$ +/* + * Copyright 2000-2022 The OpenLDAP Foundation, All Rights Reserved. + * COPYING RESTRICTIONS APPLY, see COPYRIGHT file + */ + +#ifndef LDAP_REBIND_AUTH_H +#define LDAP_REBIND_AUTH_H + +#include + +/** + * This class represent Authentication information for the case that the + * library is chasing referrals. + * + * The LDAPRebind::getRebindAuth() method returns an object of this type. + * And the library uses it to authentication to the destination server of a + * referral. + * @note currently only SIMPLE authentication is supported by the library + */ +class LDAPRebindAuth{ + public: + /** + * @param dn The DN that should be used for the authentication + * @param pwd The password that belongs to the DN + */ + LDAPRebindAuth(const std::string& dn="", const std::string& pwd=""); + + /** + * Copy-constructor + */ + LDAPRebindAuth(const LDAPRebindAuth& lra); + + /** + * Destructor + */ + virtual ~LDAPRebindAuth(); + + /** + * @return The DN that was set in the constructor + */ + const std::string& getDN() const; + + /** + * @return The password that was set in the constructor + */ + const std::string& getPassword() const; + + private: + std::string m_dn; + std::string m_password; +}; + +#endif //LDAP_REBIND_AUTH_H + -- cgit v1.2.3