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/LDAPSearchReference.h | 46 +++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 contrib/ldapc++/src/LDAPSearchReference.h (limited to 'contrib/ldapc++/src/LDAPSearchReference.h') diff --git a/contrib/ldapc++/src/LDAPSearchReference.h b/contrib/ldapc++/src/LDAPSearchReference.h new file mode 100644 index 0000000..209ae33 --- /dev/null +++ b/contrib/ldapc++/src/LDAPSearchReference.h @@ -0,0 +1,46 @@ +// $OpenLDAP$ +/* + * Copyright 2000-2022 The OpenLDAP Foundation, All Rights Reserved. + * COPYING RESTRICTIONS APPLY, see COPYRIGHT file + */ + + +#ifndef LDAP_SEARCH_REFERENCE_H +#define LDAP_SEARCH_REFERENCE_H + +#include +#include + +class LDAPRequest; +class LDAPUrl; + +/** + * This class is used to represent Continuation References that were + * returned during a SEARCH-Operation. + */ +class LDAPSearchReference : public LDAPMsg{ + + public : + /** + * Constructor that create an object from the C-API structures + */ + LDAPSearchReference(const LDAPRequest* req, LDAPMessage* msg); + + /** + * The Destructor + */ + ~LDAPSearchReference(); + + /** + * @returns The destination URLs that were send with this message + */ + const LDAPUrlList& getUrls() const; + + private : + LDAPUrlList m_urlList; + LDAPSearchReference(); +}; + + + +#endif //LDAP_SEARCH_REFERENCE_H -- cgit v1.2.3