Lines Matching refs:LDAP

12  *  ldap-int.h - defines & prototypes internal to the LDAP library
40 void add_request_to_cache( LDAP *ld, unsigned int msgtype,
42 void add_result_to_cache( LDAP *ld, LDAPMessage *result );
43 int check_cache( LDAP *ld, unsigned int msgtype, BerElement *request );
56 char *get_kerberosv4_credentials( LDAP *ld, char *who, char *service,
67 int ldap_insert_notif(LDAP *ld, LDAPMessage *notif);
68 int ldap_add_notif(LDAP *ld, LDAPMessage *notif);
76 int open_default_ldap_connection(LDAP *ld);
77 int open_ldap_connection( LDAP *ld, Sockbuf *sb, char *host, int defport,
88 int ldap_get_option (LDAP *ld, int option, void *outvalue);
113 int do_ldap_select( LDAP *ld, struct timeval *timeout );
116 void mark_select_write( LDAP *ld, Sockbuf *sb );
117 void mark_select_read( LDAP *ld, Sockbuf *sb );
118 void mark_select_clear( LDAP *ld, Sockbuf *sb );
119 long is_read_ready( LDAP *ld, Sockbuf *sb );
120 long is_write_ready( LDAP *ld, Sockbuf *sb );
142 int send_initial_request( LDAP *ld, unsigned int msgtype,
144 BerElement *alloc_ber_with_options( LDAP *ld );
145 void set_ber_options( LDAP *ld, BerElement *ber );
154 int send_server_request( LDAP *ld, BerElement *ber, int msgid,
157 LDAPConn *new_connection( LDAP *ld, LDAPServer **srvlistp, int use_ldsb,
159 LDAPRequest *find_request_by_msgid( LDAP *ld, int msgid );
160 void free_request( LDAP *ld, LDAPRequest *lr );
161 void free_connection( LDAP *ld, LDAPConn *lc, int force, int unbind );
162 void dump_connection( LDAP *ld, LDAPConn *lconns, int all );
163 void dump_requests_and_responses( LDAP *ld );
177 int chase_referrals( LDAP *ld, LDAPRequest *lr, char **refs, int *count, int samerequest );
180 int append_referral( LDAP *ld, char **referralsp, char *s );
189 void nsldapi_connection_lost_nolock( LDAP *ld, Sockbuf *sb );
195 BerElement *ldap_build_search_req( LDAP *ld, char *base, int scope,
208 int ldap_ld_free( LDAP *ld, int close );
209 int send_unbind( LDAP *ld, Sockbuf *sb );
231 BerElement * ldap_build_abandon_req( LDAP *ld, int msgid, LDAPControl ** serverctrls);
238 BerElement * ldap_build_add_req(LDAP *ld, char *dn, LDAPMod **attrs, LDAPControl ** serverctrls);
247 BerElement * ldap_build_compare_req(LDAP *ld, char *dn, char *attr, struct berval *bvalue, LDAPControl **serverctrls);
256 BerElement * ldap_build_delete_req(LDAP *ld, char *dn, LDAPControl **serverctrls);
265 BerElement * ldap_build_extended_operation_req(LDAP *ld, char *exoid, struct berval *exdata, LDAPControl ** serverctrls);
274 BerElement * ldap_build_modify_req(LDAP *ld, char *dn, LDAPMod ** mods, LDAPControl **serverctrls);
283 BerElement * ldap_build_rename_req ( LDAP *ld, char *dn, char *newrdn, char *newparent, int deleteoldrdn, LDAPControl **serverctrls);
292 BerElement * ldap_build_sasl_bind_req( LDAP *ld, char *dn, char *mechanism, struct berval *creds, LDAPControl ** serverctrls);
300 BerElement * ldap_build_simple_bind_req(LDAP *ld, char *dn, char *passwd, LDAPControl **serverctrls);