diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 11:11:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 11:11:40 +0000 |
commit | 7731832751ab9f3c6ddeb66f186d3d7fa1934a6d (patch) | |
tree | e91015872543a59be2aad26c2fea02e41b57005d /contrib/ldapc++/src/LDAPExtResult.h | |
parent | Initial commit. (diff) | |
download | openldap-7731832751ab9f3c6ddeb66f186d3d7fa1934a6d.tar.xz openldap-7731832751ab9f3c6ddeb66f186d3d7fa1934a6d.zip |
Adding upstream version 2.4.57+dfsg.upstream/2.4.57+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'contrib/ldapc++/src/LDAPExtResult.h')
-rw-r--r-- | contrib/ldapc++/src/LDAPExtResult.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/contrib/ldapc++/src/LDAPExtResult.h b/contrib/ldapc++/src/LDAPExtResult.h new file mode 100644 index 0000000..eff9838 --- /dev/null +++ b/contrib/ldapc++/src/LDAPExtResult.h @@ -0,0 +1,50 @@ +// $OpenLDAP$ +/* + * Copyright 2000-2021 The OpenLDAP Foundation, All Rights Reserved. + * COPYING RESTRICTIONS APPLY, see COPYRIGHT file + */ + +#ifndef LDAP_EXT_RESULT_H +#define LDAP_EXT_RESULT_H + +#include <ldap.h> + +#include <LDAPResult.h> + +class LDAPRequest; + +/** + * Object of this class are created by the LDAPMsg::create method if + * results for an Extended Operation were returned by a LDAP server. + */ +class LDAPExtResult : public LDAPResult { + public : + /** + * Constructor that creates an LDAPExtResult-object from the C-API + * structures + */ + LDAPExtResult(const LDAPRequest* req, LDAPMessage* msg); + + /** + * The Destructor + */ + virtual ~LDAPExtResult(); + + /** + * @returns The OID of the Extended Operation that has returned + * this result. + */ + const std::string& getResponseOid() const; + + /** + * @returns If the result contained data this method will return + * the data to the caller as a std::string. + */ + const std::string& getResponse() const; + + private: + std::string m_oid; + std::string m_data; +}; + +#endif // LDAP_EXT_RESULT_H |