ldapsdk 0.0.1
|
00001 // $OpenLDAP$ 00002 /* 00003 * Copyright 2007, OpenLDAP Foundation, All Rights Reserved. 00004 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file 00005 */ 00006 00007 #ifndef LDAP_SASL_BIND_RESULT_H 00008 #define LDAP_SASL_BIND_RESULT_H 00009 00010 #include <ldap.h> 00011 00012 #include <LDAPResult.h> 00013 00014 class LDAPRequest; 00015 00020 class LDAPSaslBindResult : public LDAPResult { 00021 public : 00026 LDAPSaslBindResult(const LDAPRequest* req, LDAPMessage* msg); 00027 00031 virtual ~LDAPSaslBindResult(); 00032 00037 const std::string& getServerCreds() const; 00038 00039 private: 00040 std::string m_creds; 00041 }; 00042 00043 #endif // LDAP_SASL_BIND_RESULT_H