Home
last modified time | relevance | path

Searched refs:ld (Results 1 – 25 of 452) sorted by relevance

12345678910>>...19

/titanic_41/usr/src/lib/libldap5/sources/ldap/common/
H A Dunbind.c48 ldap_unbind( LDAP *ld ) in ldap_unbind() argument
52 return( ldap_ld_free( ld, NULL, NULL, 1 ) ); in ldap_unbind()
58 ldap_unbind_s( LDAP *ld ) in ldap_unbind_s() argument
60 return( ldap_ld_free( ld, NULL, NULL, 1 )); in ldap_unbind_s()
66 ldap_unbind_ext( LDAP *ld, LDAPControl **serverctrls, in ldap_unbind_ext() argument
69 return( ldap_ld_free( ld, serverctrls, clientctrls, 1 )); in ldap_unbind_ext()
78 ldap_ld_free( LDAP *ld, LDAPControl **serverctrls, in ldap_ld_free() argument
85 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) { in ldap_ld_free()
89 if ( ld->ld_sbp->sb_naddr == 0 ) { in ldap_ld_free()
90 LDAP_MUTEX_LOCK( ld, LDAP_REQ_LOCK ); in ldap_ld_free()
[all …]
H A Dsetoption.c41 #define LDAP_SETCLR_BITOPT(ld, bit, optdata) \ argument
43 (ld)->ld_options |= bit; \
45 (ld)->ld_options &= ~bit; \
51 ldap_set_option(LDAP *ld, int option, const void *optdata) in ldap_set_option() argument
98 if (ld == NULL) { in ldap_set_option()
99 ld = &nsldapi_ld_defaults; in ldap_set_option()
109 if (!NSLDAPI_VALID_LDAP_POINTER(ld)) { in ldap_set_option()
114 if (ld != &nsldapi_ld_defaults && in ldap_set_option()
117 LDAP_MUTEX_LOCK(ld, LDAP_OPTION_LOCK); in ldap_set_option()
123 LDAP_SETCLR_BITOPT(ld, LDAP_BITOPT_DNS, optdata); in ldap_set_option()
[all …]
H A Dsbind.c40 static int simple_bind_nolock( LDAP *ld, const char *dn, const char *passwd,
42 static int simple_bindifnot_s( LDAP *ld, const char *dn, const char *passwd );
56 ldap_simple_bind( LDAP *ld, const char *dn, const char *passwd ) in ldap_simple_bind() argument
62 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) { in ldap_simple_bind()
66 rc = simple_bind_nolock( ld, dn, passwd, 1 ); in ldap_simple_bind()
73 simple_bind_nolock( LDAP *ld, const char *dn, const char *passwd, in simple_bind_nolock() argument
91 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK ); in simple_bind_nolock()
92 msgid = ++ld->ld_msgid; in simple_bind_nolock()
93 LDAP_MUTEX_UNLOCK( ld, LDAP_MSGID_LOCK ); in simple_bind_nolock()
100 if ( ld->ld_cache_on && ld->ld_cache_bind != NULL ) { in simple_bind_nolock()
[all …]
H A Dldap-int.h325 #define NSLDAPI_USING_CLASSIC_IO_FUNCTIONS( ld ) ((ld)->ld_io_fns_ptr != NULL) argument
418 #define LDAP_MUTEX_ALLOC( ld ) \ argument
419 (((ld)->ld_mutex_alloc_fn != NULL) ? (ld)->ld_mutex_alloc_fn() : NULL)
422 #define LDAP_MUTEX_FREE( ld, m ) \ argument
423 if ( (ld)->ld_mutex_free_fn != NULL && m != NULL ) { \
424 (ld)->ld_mutex_free_fn( m ); \
439 #define LDAP_MUTEX_LOCK(ld, lock) \ argument
440 if ((ld)->ld_mutex_lock_fn != NULL && ld->ld_mutex != NULL) { \
441 if ((ld)->ld_threadid_fn != NULL) { \
442 if ((ld)->ld_mutex_threadid[lock] == (ld)->ld_threadid_fn()) { \
[all …]
H A Drename.c62 LDAP *ld, in ldap_rename() argument
87 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) { in ldap_rename()
91 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL ); in ldap_rename()
99 if (( NSLDAPI_LDAP_VERSION( ld ) < LDAP_VERSION3 ) in ldap_rename()
102 LDAP_SET_LDERRNO( ld, LDAP_NOT_SUPPORTED, NULL, NULL ); in ldap_rename()
107 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL ); in ldap_rename()
111 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK ); in ldap_rename()
112 *msgidp = ++ld->ld_msgid; in ldap_rename()
113 LDAP_MUTEX_UNLOCK( ld, LDAP_MSGID_LOCK ); in ldap_rename()
116 if ( ld->ld_cache_on ) { in ldap_rename()
[all …]
H A Dgetoption.c31 #define LDAP_GET_BITOPT( ld, bit ) \ argument
32 ((ld)->ld_options & bit ) != 0 ? 1 : 0
40 ldap_get_option( LDAP *ld, int option, void *optdata ) in ldap_get_option() argument
67 if ( ld != NULL ) { in ldap_get_option()
68 LDAP_SET_LDERRNO( ld, rc, NULL, NULL ); in ldap_get_option()
88 if ( ld == NULL ) { in ldap_get_option()
89 ld = &nsldapi_ld_defaults; in ldap_get_option()
92 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) { in ldap_get_option()
97 if (ld != &nsldapi_ld_defaults) in ldap_get_option()
98 LDAP_MUTEX_LOCK( ld, LDAP_OPTION_LOCK ); in ldap_get_option()
[all …]
H A Dresult.c46 static int check_response_queue( LDAP *ld, int msgid, int all,
48 static int ldap_abandoned( LDAP *ld, int msgid );
49 static int ldap_mark_abandoned( LDAP *ld, int msgid );
50 static int wait4msg( LDAP *ld, int msgid, int all, int unlock_permitted,
52 static int read1msg( LDAP *ld, int msgid, int all, Sockbuf *sb, LDAPConn *lc,
54 static void check_for_refs( LDAP *ld, LDAPRequest *lr, BerElement *ber,
56 static int build_result_ber( LDAP *ld, BerElement **berp, LDAPRequest *lr );
57 static void merge_error_info( LDAP *ld, LDAPRequest *parentr, LDAPRequest *lr );
59 static int cldap_select1( LDAP *ld, struct timeval *timeout );
61 static void link_pend( LDAP *ld, LDAPPend *lp );
[all …]
H A Dabandon.c41 static int do_abandon( LDAP *ld, int origid, int msgid,
57 ldap_abandon( LDAP *ld, int msgid ) in ldap_abandon() argument
61 if ( ldap_abandon_ext( ld, msgid, NULL, NULL ) == LDAP_SUCCESS ) { in ldap_abandon()
75 ldap_abandon_ext( LDAP *ld, int msgid, LDAPControl **serverctrls, in ldap_abandon_ext() argument
82 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) { in ldap_abandon_ext()
86 LDAP_MUTEX_LOCK( ld, LDAP_CONN_LOCK ); in ldap_abandon_ext()
87 LDAP_MUTEX_LOCK( ld, LDAP_REQ_LOCK ); in ldap_abandon_ext()
88 rc = do_abandon( ld, msgid, msgid, serverctrls, clientctrls ); in ldap_abandon_ext()
93 ldap_memcache_abandon( ld, msgid ); in ldap_abandon_ext()
95 LDAP_MUTEX_UNLOCK( ld, LDAP_REQ_LOCK ); in ldap_abandon_ext()
[all …]
H A Drequest.c45 static LDAPConn *find_connection( LDAP *ld, LDAPServer *srv, int any );
46 static void use_connection( LDAP *ld, LDAPConn *lc );
48 static int chase_one_referral( LDAP *ld, LDAPRequest *lr, LDAPRequest *origreq,
50 static int re_encode_request( LDAP *ld, BerElement *origber,
54 static LDAPServer *dn2servers( LDAP *ld, char *dn );
60 nsldapi_alloc_ber_with_options( LDAP *ld, BerElement **berp ) in nsldapi_alloc_ber_with_options() argument
64 LDAP_MUTEX_LOCK( ld, LDAP_OPTION_LOCK ); in nsldapi_alloc_ber_with_options()
65 if (( *berp = ber_alloc_t( ld->ld_lberoptions )) == NULLBER ) { in nsldapi_alloc_ber_with_options()
67 LDAP_SET_LDERRNO( ld, err, NULL, NULL ); in nsldapi_alloc_ber_with_options()
71 nsldapi_set_ber_options( ld, *berp ); in nsldapi_alloc_ber_with_options()
[all …]
H A Ddelete.c47 ldap_delete( LDAP *ld, const char *dn ) in ldap_delete() argument
53 if ( ldap_delete_ext( ld, dn, NULL, NULL, &msgid ) == LDAP_SUCCESS ) { in ldap_delete()
62 ldap_delete_ext( LDAP *ld, const char *dn, LDAPControl **serverctrls, in ldap_delete_ext() argument
75 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) { in ldap_delete_ext()
81 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL ); in ldap_delete_ext()
88 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK ); in ldap_delete_ext()
89 *msgidp = ++ld->ld_msgid; in ldap_delete_ext()
90 LDAP_MUTEX_UNLOCK( ld, LDAP_MSGID_LOCK ); in ldap_delete_ext()
93 if ( ld->ld_cache_on && ld->ld_cache_delete != NULL ) { in ldap_delete_ext()
94 LDAP_MUTEX_LOCK( ld, LDAP_CACHE_LOCK ); in ldap_delete_ext()
[all …]
H A Dbind.c51 ldap_bind( LDAP *ld, const char *dn, const char *passwd, int authmethod ) in ldap_bind() argument
67 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) { in ldap_bind()
73 return( ldap_simple_bind( ld, dn, passwd ) ); in ldap_bind()
76 LDAP_SET_LDERRNO( ld, LDAP_AUTH_UNKNOWN, NULL, NULL ); in ldap_bind()
97 ldap_bind_s( LDAP *ld, const char *dn, const char *passwd, int authmethod ) in ldap_bind_s() argument
105 return( ldap_simple_bind_s( ld, dn, passwd ) ); in ldap_bind_s()
109 LDAP_SET_LDERRNO( ld, err, NULL, NULL ); in ldap_bind_s()
117 ldap_set_rebind_proc( LDAP *ld, LDAP_REBINDPROC_CALLBACK *rebindproc, in ldap_set_rebind_proc() argument
120 if ( ld == NULL ) { in ldap_set_rebind_proc()
124 ld = &nsldapi_ld_defaults; in ldap_set_rebind_proc()
[all …]
H A Dadd.c61 ldap_add( LDAP *ld, const char *dn, LDAPMod **attrs ) in ldap_add() argument
67 if ( ldap_add_ext( ld, dn, attrs, NULL, NULL, &msgid ) in ldap_add()
82 ldap_add_ext( LDAP *ld, const char *dn, LDAPMod **attrs, in ldap_add_ext() argument
101 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) { in ldap_add_ext()
107 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL ); in ldap_add_ext()
113 LDAP_SET_LDERRNO( ld, lderr, NULL, NULL ); in ldap_add_ext()
121 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK ); in ldap_add_ext()
122 *msgidp = ++ld->ld_msgid; in ldap_add_ext()
123 LDAP_MUTEX_UNLOCK( ld, LDAP_MSGID_LOCK ); in ldap_add_ext()
126 if ( ld->ld_cache_on && ld->ld_cache_add != NULL ) { in ldap_add_ext()
[all …]
H A Dopen.c423 LDAP *ld; in ldap_open() local
427 if (( ld = ldap_init( host, port )) == NULL ) { in ldap_open()
431 LDAP_MUTEX_LOCK( ld, LDAP_CONN_LOCK ); in ldap_open()
432 if ( nsldapi_open_ldap_defconn( ld ) < 0 ) { in ldap_open()
433 LDAP_MUTEX_UNLOCK( ld, LDAP_CONN_LOCK ); in ldap_open()
434 ldap_ld_free( ld, NULL, NULL, 0 ); in ldap_open()
438 LDAP_MUTEX_UNLOCK( ld, LDAP_CONN_LOCK ); in ldap_open()
440 ( ld->ld_host == NULL ) ? "(null)" : ld->ld_host, 0, 0 ); in ldap_open()
442 return( ld ); in ldap_open()
459 LDAP *ld; in ldap_init() local
[all …]
H A Dmodify.c59 ldap_modify( LDAP *ld, const char *dn, LDAPMod **mods ) in ldap_modify() argument
65 if ( ldap_modify_ext( ld, dn, mods, NULL, NULL, &msgid ) in ldap_modify()
75 ldap_modify_ext( LDAP *ld, const char *dn, LDAPMod **mods, in ldap_modify_ext() argument
101 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) { in ldap_modify_ext()
106 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL ); in ldap_modify_ext()
112 LDAP_SET_LDERRNO( ld, lderr, NULL, NULL ); in ldap_modify_ext()
119 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK ); in ldap_modify_ext()
120 *msgidp = ++ld->ld_msgid; in ldap_modify_ext()
121 LDAP_MUTEX_UNLOCK( ld, LDAP_MSGID_LOCK ); in ldap_modify_ext()
124 if ( ld->ld_cache_on && ld->ld_cache_modify != NULL ) { in ldap_modify_ext()
[all …]
H A Dsaslbind.c47 LDAP *ld, in ldap_sasl_bind() argument
79 LDAP_SET_LDERRNO( ld, LDAP_PARAM_ERROR, NULL, NULL ); in ldap_sasl_bind()
84 ldapversion = NSLDAPI_LDAP_VERSION( ld ); in ldap_sasl_bind()
88 LDAP_SET_LDERRNO( ld, LDAP_NOT_SUPPORTED, NULL, NULL ); in ldap_sasl_bind()
92 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK ); in ldap_sasl_bind()
93 msgid = ++ld->ld_msgid; in ldap_sasl_bind()
94 LDAP_MUTEX_UNLOCK( ld, LDAP_MSGID_LOCK ); in ldap_sasl_bind()
99 if ( ld->ld_cache_on && ld->ld_cache_bind != NULL ) { in ldap_sasl_bind()
100 LDAP_MUTEX_LOCK( ld, LDAP_CACHE_LOCK ); in ldap_sasl_bind()
101 if ( (rc = (ld->ld_cache_bind)( ld, msgid, LDAP_REQ_BIND, dn, in ldap_sasl_bind()
[all …]
H A Dextendop.c38 LDAP *ld, in ldap_extended_operation() argument
62 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) { in ldap_extended_operation()
68 if ( NSLDAPI_LDAP_VERSION( ld ) < LDAP_VERSION3 ) { in ldap_extended_operation()
70 LDAP_SET_LDERRNO( ld, rc, NULL, NULL ); in ldap_extended_operation()
77 LDAP_SET_LDERRNO( ld, rc, NULL, NULL ); in ldap_extended_operation()
81 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK ); in ldap_extended_operation()
82 msgid = ++ld->ld_msgid; in ldap_extended_operation()
83 LDAP_MUTEX_UNLOCK( ld, LDAP_MSGID_LOCK ); in ldap_extended_operation()
86 if ( ld->ld_cache_on && ld->ld_cache_extendedop != NULL ) { in ldap_extended_operation()
87 LDAP_MUTEX_LOCK( ld, LDAP_CACHE_LOCK ); in ldap_extended_operation()
[all …]
H A Dcompare.c50 ldap_compare( LDAP *ld, const char *dn, const char *attr, const char *value ) in ldap_compare() argument
60 if ( ldap_compare_ext( ld, dn, attr, &bv, NULL, NULL, &msgid ) in ldap_compare()
70 ldap_compare_ext( LDAP *ld, const char *dn, const char *attr, in ldap_compare_ext() argument
90 if ( !NSLDAPI_VALID_LDAP_POINTER( ld )) { in ldap_compare_ext()
96 LDAP_SET_LDERRNO( ld, lderr, NULL, NULL ); in ldap_compare_ext()
104 LDAP_MUTEX_LOCK( ld, LDAP_MSGID_LOCK ); in ldap_compare_ext()
105 *msgidp = ++ld->ld_msgid; in ldap_compare_ext()
106 LDAP_MUTEX_UNLOCK( ld, LDAP_MSGID_LOCK ); in ldap_compare_ext()
109 if ( ld->ld_cache_on && ld->ld_cache_compare != NULL ) { in ldap_compare_ext()
110 LDAP_MUTEX_LOCK( ld, LDAP_CACHE_LOCK ); in ldap_compare_ext()
[all …]
H A Dufn.c47 static int ldap_ufn_search_ctx( LDAP *ld, char **ufncomp, int ncomp,
51 static LDAPMessage *ldap_msg_merge( LDAP *ld, LDAPMessage *a, LDAPMessage *b );
52 static LDAPMessage *ldap_ufn_expand( LDAP *ld,
85 LDAP *ld, in ldap_ufn_search_ctx() argument
160 LDAP_SET_LDERRNO( ld, err, NULL, NULL ); in ldap_ufn_search_ctx()
174 if ( (dn = ldap_get_dn( ld, tmpcand )) == NULL ) in ldap_ufn_search_ctx()
181 LDAP_SET_LDERRNO( ld, err, in ldap_ufn_search_ctx()
191 LDAP_SET_LDERRNO( ld, err, in ldap_ufn_search_ctx()
206 for ( fi = ldap_getfirstfilter( ld->ld_filtd, ftag, in ldap_ufn_search_ctx()
208 fi = ldap_getnextfilter( ld->ld_filtd ) ) in ldap_ufn_search_ctx()
[all …]
H A Dsasl.c53 static int nsldapi_sasl_close( LDAP *ld, Sockbuf *sb );
149 LDAP *ld; in nsldapi_sasl_read() local
159 ld = (LDAP *)sb->sb_sasl_prld; in nsldapi_sasl_read()
160 if (ld == NULL) { in nsldapi_sasl_read()
192 if ( ( ret < 0 ) && ( LDAP_GET_ERRNO(ld) == EINTR ) ) in nsldapi_sasl_read()
206 LDAP_SET_ERRNO(ld, EIO); in nsldapi_sasl_read()
222 if ( ( ret < 0 ) && ( LDAP_GET_ERRNO(ld) == EINTR ) ) in nsldapi_sasl_read()
241 LDAP_SET_ERRNO(ld, EIO); in nsldapi_sasl_read()
319 LDAP *ld; in nsldapi_sasl_poll() local
325 ld = (LDAP *)sb->sb_sasl_prld; in nsldapi_sasl_poll()
[all …]
H A Dllib-lldap20 int ldap_abandon_ext(LDAP *ld, int msgid, LDAPControl **serverctrls, LDAPControl ** clientctrls);
22 int ldap_abandon( LDAP *ld, int msgid );
27 int ldap_add_ext( LDAP *ld, const char *dn, LDAPMod **attrs, LDAPControl ** serverctrls, LDAPContro…
29 int ldap_add_ext_s( LDAP *ld, const char *dn, LDAPMod **attrs, LDAPControl ** serverctrls, LDAPCont…
31 int ldap_add( LDAP *ld, const char *dn, LDAPMod **attrs );
32 int ldap_add_s( LDAP *ld, const char *dn, LDAPMod **attrs );
37 int ldap_bind(LDAP *ld, const char *dn, const char *passwd, int authmethod);
38 int ldap_bind_s(LDAP *ld, const char *dn, const char *passwd, int authmethod);
39 void ldap_set_rebind_proc(LDAP *ld, LDAP_REBINDPROC_CALLBACK *rebindproc, void *arg);
44 int ldap_simple_bind( LDAP *ld, const char *dn, const char *passwd );
[all …]
/titanic_41/usr/src/lib/libsldap/common/
H A Dns_wrapper.c47 LDAP *ld = __s_api_getLDAPconn(flags); in _ns_ldap_abandon_ext() local
49 return (ldap_abandon_ext(ld, msgid, serverctrls, clientctrls)); in _ns_ldap_abandon_ext()
56 LDAP *ld = __s_api_getLDAPconn(flags); in _ns_ldap_abandon() local
58 return (ldap_abandon(ld, msgid)); in _ns_ldap_abandon()
69 LDAP *ld = __s_api_getLDAPconn(flags); in _ns_ldap_add_ext() local
71 return (ldap_add_ext(ld, dn, attrs, in _ns_ldap_add_ext()
80 LDAP *ld = __s_api_getLDAPconn(flags); in _ns_ldap_add_ext_s() local
82 return (ldap_add_ext_s(ld, dn, attrs, serverctrls, clientctrls)); in _ns_ldap_add_ext_s()
89 LDAP *ld = __s_api_getLDAPconn(flags); in _ns_ldap_add() local
91 return (ldap_add(ld, dn, attrs)); in _ns_ldap_add()
[all …]
/titanic_41/usr/src/lib/libldap5/sources/ldap/prldap/
H A Dldappr-public.c54 LDAP *ld; in prldap_init() local
56 if (( ld = ldap_init( defhost, defport )) != NULL ) { in prldap_init()
57 if ( prldap_install_routines( ld, shared ) != LDAP_SUCCESS ) { in prldap_init()
59 ldap_unbind( ld ); in prldap_init()
60 ld = NULL; in prldap_init()
64 return( ld ); in prldap_init()
84 prldap_install_routines( LDAP *ld, int shared ) in prldap_install_routines() argument
87 if ( prldap_install_io_functions( ld, shared ) != 0 in prldap_install_routines()
88 || prldap_install_thread_functions( ld, shared ) != 0 in prldap_install_routines()
89 || prldap_install_dns_functions( ld ) != 0 ) { in prldap_install_routines()
[all …]
/titanic_41/usr/src/cmd/ldap/common/
H A Dldaptest.c22 static void handle_result( LDAP *ld, LDAPMessage *lm );
23 static void print_ldap_result( LDAP *ld, LDAPMessage *lm, char *s );
24 static void print_search_entry( LDAP *ld, LDAPMessage *res );
220 bind_prompt( LDAP *ld, char **dnp, char **passwdp, int *authmethodp, in bind_prompt() argument
258 LDAP *ld; in main() local
363 ld = cldap_open( host, port ); in main()
366 ld = ldap_init( host, port ); in main()
369 if ( ld == NULL ) { in main()
376 if ( (ld->ld_sb.sb_fd = open( copyfname, O_WRONLY | O_CREAT, in main()
381 ld->ld_sb.sb_options = copyoptions; in main()
[all …]
/titanic_41/usr/src/lib/libbc/libc/compat/common/
H A Dlockf.c49 struct flock ld; in lockf() local
53 ld.l_type = F_WRLCK; /* lockf() only deals with exclusive locks */ in lockf()
54 ld.l_whence = 1; /* lock always starts at current position */ in lockf()
56 ld.l_start = size; in lockf()
57 ld.l_len = -size; in lockf()
59 ld.l_start = 0L; in lockf()
60 ld.l_len = size; in lockf()
65 if (_syscall(SYS_fcntl, fildes, SV_GETLK, &ld) != -1) { in lockf()
66 if (ld.l_type == F_UNLCK) { in lockf()
67 ld.l_pid = ld.l_xxx; in lockf()
[all …]
/titanic_41/usr/src/head/
H A Dldap.h456 int ldap_create_page_control(LDAP *ld, unsigned int pagesize,
458 int ldap_parse_page_control(LDAP *ld, LDAPControl **controls,
462 int ldap_sasl_cram_md5_bind_s(LDAP *ld, char *dn,
466 int ldap_x_sasl_digest_md5_bind_s(LDAP *ld, char *dn,
469 int ldap_x_sasl_digest_md5_bind(LDAP *ld, char *dn,
478 int LDAP_CALL ldap_set_option(LDAP *ld, int option,
480 int LDAP_CALL ldap_get_option(LDAP *ld, int option, void *optdata);
481 int LDAP_CALL ldap_unbind(LDAP *ld);
482 int LDAP_CALL ldap_unbind_s(LDAP *ld);
487 int LDAP_CALL ldap_abandon(LDAP *ld, int msgid);
[all …]

12345678910>>...19