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++/examples/urlTest.cpp | 41 ++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 contrib/ldapc++/examples/urlTest.cpp (limited to 'contrib/ldapc++/examples/urlTest.cpp') diff --git a/contrib/ldapc++/examples/urlTest.cpp b/contrib/ldapc++/examples/urlTest.cpp new file mode 100644 index 0000000..6223630 --- /dev/null +++ b/contrib/ldapc++/examples/urlTest.cpp @@ -0,0 +1,41 @@ +// $OpenLDAP$ +/* + * Copyright 2008-2022 The OpenLDAP Foundation, All Rights Reserved. + * COPYING RESTRICTIONS APPLY, see COPYRIGHT file + */ + +#include +#include +#include +#include + +int main(int argc, char *argv[]) { + if ( argc != 2 ) { + std::cout << argc << std::endl; + std::cout << "urlTest " << std::endl; + exit(1); + } + std::string uristr = argv[1]; + try { + LDAPUrl url(uristr); + std::cout << "Host: " << url.getHost() << std::endl; + std::cout << "Port: " << url.getPort() << std::endl; + std::cout << "BaseDN: " << url.getDN() << std::endl; + std::cout << "Scope: " << url.getScope() << std::endl; + StringList attrs = url.getAttrs(); + std::cout << "Attrs: " << std::endl; + StringList::const_iterator i = attrs.begin(); + for( ; i != attrs.end(); i++ ) { + std::cout << " " << *i << std::endl; + } + std::cout << "Filter: " << url.getFilter() << std::endl; + std::cout << "Setting new BaseDN" << std::endl; + url.setDN("o=Beispiel, c=DE"); + std::cout << "Url: " << url.getURLString() << std::endl; + } catch (LDAPUrlException e) { + std::cout << e.getCode() << std::endl; + std::cout << e.getErrorMessage() << std::endl; + std::cout << e.getAdditionalInfo() << std::endl; + } + +} -- cgit v1.2.3