• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/

Lines Matching defs:LDAPAsynConnection

10 #include "LDAPAsynConnection.h"
29 LDAPAsynConnection::LDAPAsynConnection(const string& url, int port,
31 DEBUG(LDAP_DEBUG_CONSTRUCT,"LDAPAsynConnection::LDAPAsynConnection()"
46 LDAPAsynConnection::~LDAPAsynConnection(){}
48 void LDAPAsynConnection::init(const string& hostname, int port){
49 DEBUG(LDAP_DEBUG_TRACE,"LDAPAsynConnection::init" << endl);
68 void LDAPAsynConnection::initialize(const std::string& uri){
79 void LDAPAsynConnection::start_tls(){
86 LDAPMessageQueue* LDAPAsynConnection::bind(const string& dn,
88 DEBUG(LDAP_DEBUG_TRACE, "LDAPAsynConnection::bind()" << endl);
101 LDAPMessageQueue* LDAPAsynConnection::saslBind(const std::string &mech,
105 DEBUG(LDAP_DEBUG_TRACE, "LDAPAsynConnection::saslBind()" << endl);
117 LDAPMessageQueue* LDAPAsynConnection::saslInteractiveBind(
123 DEBUG(LDAP_DEBUG_TRACE, "LDAPAsynConnection::saslInteractiveBind"
136 LDAPMessageQueue* LDAPAsynConnection::search(const string& base,int scope,
141 DEBUG(LDAP_DEBUG_TRACE, "LDAPAsynConnection::search()" << endl);
156 LDAPMessageQueue* LDAPAsynConnection::del(const string& dn,
158 DEBUG(LDAP_DEBUG_TRACE,"LDAPAsynConnection::del()" << endl);
170 LDAPMessageQueue* LDAPAsynConnection::compare(const string& dn,
172 DEBUG(LDAP_DEBUG_TRACE,"LDAPAsynConnection::compare()" << endl);
185 LDAPMessageQueue* LDAPAsynConnection::add( const LDAPEntry* le,
187 DEBUG(LDAP_DEBUG_TRACE,"LDAPAsynConnection::add()" << endl);
199 LDAPMessageQueue* LDAPAsynConnection::modify(const string& dn,
201 DEBUG(LDAP_DEBUG_TRACE,"LDAPAsynConnection::modify()" << endl);
213 LDAPMessageQueue* LDAPAsynConnection::rename(const string& dn,
216 DEBUG(LDAP_DEBUG_TRACE,"LDAPAsynConnection::rename()" << endl);
233 LDAPMessageQueue* LDAPAsynConnection::extOperation(const string& oid,
235 DEBUG(LDAP_DEBUG_TRACE,"LDAPAsynConnection::extOperation()" << endl);
248 void LDAPAsynConnection::abandon(LDAPMessageQueue *q){
249 DEBUG(LDAP_DEBUG_TRACE,"LDAPAsynConnection::abandon()" << endl);
263 void LDAPAsynConnection::unbind(){
264 DEBUG(LDAP_DEBUG_TRACE,"LDAPAsynConnection::unbind()" << endl);
278 void LDAPAsynConnection::setConstraints(LDAPConstraints *cons){
279 DEBUG(LDAP_DEBUG_TRACE,"LDAPAsynConnection::setConstraints()" << endl);
283 const LDAPConstraints* LDAPAsynConnection::getConstraints() const {
284 DEBUG(LDAP_DEBUG_TRACE,"LDAPAsynConnection::getConstraints()" << endl);
288 TlsOptions LDAPAsynConnection::getTlsOptions() const {
292 LDAP* LDAPAsynConnection::getSessionHandle() const{
293 DEBUG(LDAP_DEBUG_TRACE,"LDAPAsynConnection::getSessionHandle()" << endl);
297 const string& LDAPAsynConnection::getHost() const{
298 DEBUG(LDAP_DEBUG_TRACE,"LDAPAsynConnection::setHost()" << endl);
302 int LDAPAsynConnection::getPort() const{
303 DEBUG(LDAP_DEBUG_TRACE,"LDAPAsynConnection::getPort()" << endl);
307 LDAPAsynConnection* LDAPAsynConnection::referralConnect(
310 DEBUG(LDAP_DEBUG_TRACE, "LDAPAsynConnection::referralConnect()" << endl)
312 LDAPAsynConnection* tmpConn=0;
322 tmpConn=new LDAPAsynConnection(host.c_str(),port);