Home
last modified time | relevance | path

Searched refs:getSessionHandle (Results 1 – 19 of 19) sorted by relevance

/netbsd-src/external/bsd/openldap/dist/contrib/ldapc++/src/
H A DLDAPBindRequest.cpp66 int err=ldap_sasl_bind(m_connection->getSessionHandle(),dn, in sendRequest()
98 int err=ldap_sasl_bind(m_connection->getSessionHandle(), "", m_mech.c_str(), in sendRequest()
150 int res = ldap_sasl_interactive_bind_s( m_connection->getSessionHandle(), in sendRequest()
H A DLDAPAttributeList.cpp40 char *name=ldap_first_attribute(ld->getSessionHandle(), msg, &ptr); in LDAPAttributeList()
56 name=ldap_next_attribute(ld->getSessionHandle(),msg,ptr) ){ in LDAPAttributeList()
57 values=ldap_get_values_len(ld->getSessionHandle(), in LDAPAttributeList()
H A DLDAPSearchRequest.cpp68 ldap_set_option(m_connection->getSessionHandle(), LDAP_OPT_DEREF, in sendRequest()
70 int err=ldap_search_ext(m_connection->getSessionHandle(), m_base.c_str(), in sendRequest()
H A DLDAPAsynConnection.cpp300 LDAP* LDAPAsynConnection::getSessionHandle() const{ in getSessionHandle() function in LDAPAsynConnection
348 err = ldap_sasl_bind_s(tmpConn->getSessionHandle(), c_dn, in referralConnect()
352 err = ldap_sasl_bind_s(tmpConn->getSessionHandle(),NULL, in referralConnect()
H A DLDAPSearchReference.cpp25 int err = ldap_parse_reference(con->getSessionHandle(), msg, &ref, in LDAPSearchReference()
H A DLDAPExtResult.cpp22 LDAP* lc = req->getConnection()->getSessionHandle(); in LDAPExtResult()
H A DLDAPSearchResult.cpp23 int err = ldap_get_entry_controls(req->getConnection()->getSessionHandle(), in LDAPSearchResult()
H A DLDAPSaslBindResult.cpp22 LDAP* lc = req->getConnection()->getSessionHandle(); in LDAPSaslBindResult()
H A DLDAPException.cpp27 LDAP *l = lc->getSessionHandle(); in LDAPException()
H A DLDAPDeleteRequest.cpp46 int err=ldap_delete_ext(m_connection->getSessionHandle(),m_dn.c_str(), in sendRequest()
H A DLDAPCompareRequest.cpp50 int err=ldap_compare_ext(m_connection->getSessionHandle(),m_dn.c_str(), in sendRequest()
H A DLDAPAddRequest.cpp50 int err=ldap_add_ext(m_connection->getSessionHandle(), in sendRequest()
H A DLDAPModifyRequest.cpp51 int err=ldap_modify_ext(m_connection->getSessionHandle(),m_dn.c_str(), in sendRequest()
H A DLDAPResult.cpp27 int err=ldap_parse_result(con->getSessionHandle(),msg,&m_resCode, in LDAPResult()
H A DLDAPExtRequest.cpp53 int err=ldap_extended_operation(m_connection->getSessionHandle(), in sendRequest()
H A DLDAPModDNRequest.cpp59 int err=ldap_rename(m_connection->getSessionHandle(),m_dn.c_str(),newRDN, in sendRequest()
H A DLDAPEntry.cpp36 char* tmp=ldap_get_dn(ld->getSessionHandle(),msg); in LDAPEntry()
H A DLDAPAsynConnection.h262 LDAP* getSessionHandle() const ;
H A DLDAPRequest.cpp57 res=ldap_result(this->m_connection->getSessionHandle(), in getNextMessage()