]> git.sur5r.net Git - openldap/blob - libraries/libldap/ldap-int.h
Add ftest (filter test) to the mix, needs work.
[openldap] / libraries / libldap / ldap-int.h
1 /*  ldap-int.h - defines & prototypes internal to the LDAP library */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7 /*  Portions
8  *  Copyright (c) 1995 Regents of the University of Michigan.
9  *  All rights reserved.
10  */
11
12 #ifndef _LDAP_INT_H
13 #define _LDAP_INT_H 1
14
15 #ifdef LDAP_R_COMPILE
16 #define LDAP_THREAD_SAFE 1
17 #endif
18
19 #include "../liblber/lber-int.h"
20
21 /*
22  * Windows does not preprocess correctly unless
23  * this #include precedes queue.h
24  */
25 #ifdef LDAP_R_COMPILE
26 #include <ldap_pvt_thread.h>
27 #endif
28
29 #include <ac/queue.h>
30
31 #ifdef HAVE_CYRUS_SASL
32         /* the need for this should be removed */
33 #include <sasl.h>
34
35 #define SASL_MAX_BUFF_SIZE      65536
36 #define SASL_MIN_BUFF_SIZE      4096
37 #endif
38
39 /* 
40  * Support needed if the library is running in the kernel
41  */
42 #if LDAP_INT_IN_KERNEL
43         /* 
44          * Platform specific function to return a pointer to the
45          * process-specific global options. 
46          *
47          * This function should perform the following functions:
48          *  Allocate and initialize a global options struct on a per process basis
49          *  Use callers process identifier to return its global options struct
50          *  Note: Deallocate structure when the process exits
51          */
52 #       define LDAP_INT_GLOBAL_OPT() ldap_int_global_opt()
53    struct ldapoptions *ldap_int_global_opt(void);
54 #else
55 #       define LDAP_INT_GLOBAL_OPT() (&ldap_int_global_options)
56 #endif
57
58 #define ldap_debug      ((LDAP_INT_GLOBAL_OPT())->ldo_debug)
59
60 #include "ldap_log.h"
61
62 #undef Debug
63 #define Debug( level, fmt, arg1, arg2, arg3 ) \
64         ldap_log_printf( NULL, (level), (fmt), (arg1), (arg2), (arg3) )
65
66 #define LDAP_Debug( subsystem, level, fmt, arg1, arg2, arg3 )\
67         ldap_log_printf( NULL, (level), (fmt), (arg1), (arg2), (arg3) )
68
69 #include "ldap.h"
70
71 #include "ldap_pvt.h"
72
73 LDAP_BEGIN_DECL
74
75 #define LDAP_URL_PREFIX         "ldap://"
76 #define LDAP_URL_PREFIX_LEN     (sizeof(LDAP_URL_PREFIX)-1)
77 #define LDAPS_URL_PREFIX                "ldaps://"
78 #define LDAPS_URL_PREFIX_LEN    (sizeof(LDAPS_URL_PREFIX)-1)
79 #define LDAPI_URL_PREFIX        "ldapi://"
80 #define LDAPI_URL_PREFIX_LEN    (sizeof(LDAPI_URL_PREFIX)-1)
81 #ifdef LDAP_CONNECTIONLESS
82 #define LDAPC_URL_PREFIX        "cldap://"
83 #define LDAPC_URL_PREFIX_LEN    (sizeof(LDAPC_URL_PREFIX)-1)
84 #endif
85 #define LDAP_URL_URLCOLON               "URL:"
86 #define LDAP_URL_URLCOLON_LEN   (sizeof(LDAP_URL_URLCOLON)-1)
87
88 #define LDAP_REF_STR            "Referral:\n"
89 #define LDAP_REF_STR_LEN        (sizeof(LDAP_REF_STR)-1)
90 #define LDAP_LDAP_REF_STR       LDAP_URL_PREFIX
91 #define LDAP_LDAP_REF_STR_LEN   LDAP_URL_PREFIX_LEN
92
93 #define LDAP_DEFAULT_REFHOPLIMIT 5
94
95 #define LDAP_BOOL_REFERRALS             0
96 #define LDAP_BOOL_RESTART               1
97 #define LDAP_BOOL_TLS                   3
98
99 #define LDAP_BOOLEANS   unsigned long
100 #define LDAP_BOOL(n)    (1 << (n))
101 #define LDAP_BOOL_GET(lo, bool) \
102         ((lo)->ldo_booleans & LDAP_BOOL(bool) ? -1 : 0)
103 #define LDAP_BOOL_SET(lo, bool) ((lo)->ldo_booleans |= LDAP_BOOL(bool))
104 #define LDAP_BOOL_CLR(lo, bool) ((lo)->ldo_booleans &= ~LDAP_BOOL(bool))
105 #define LDAP_BOOL_ZERO(lo) ((lo)->ldo_booleans = 0)
106
107 /*
108  * This structure represents both ldap messages and ldap responses.
109  * These are really the same, except in the case of search responses,
110  * where a response has multiple messages.
111  */
112
113 struct ldapmsg {
114         ber_int_t               lm_msgid;       /* the message id */
115         ber_tag_t               lm_msgtype;     /* the message type */
116         BerElement      *lm_ber;        /* the ber encoded message contents */
117         struct ldapmsg  *lm_chain;      /* for search - next msg in the resp */
118         struct ldapmsg  *lm_next;       /* next response */
119         time_t  lm_time;        /* used to maintain cache */
120 };
121
122 /*
123  * structure representing get/set'able options
124  * which have global defaults.
125  */
126 struct ldapoptions {
127         short ldo_valid;
128 #define LDAP_UNINITIALIZED      0x0
129 #define LDAP_INITIALIZED        0x1
130 #define LDAP_VALID_SESSION      0x2
131 #ifdef LDAP_CONNECTIONLESS
132 #define LDAP_IS_UDP(ld)         ((ld)->ld_options.ldo_is_udp)
133         void*                   ldo_peer;       /* struct sockaddr* */
134         char*                   ldo_cldapdn;
135         int                     ldo_is_udp;
136 #endif
137
138         int             ldo_debug;
139         /* per API call timeout */
140         struct timeval          *ldo_tm_api;
141         struct timeval          *ldo_tm_net;
142
143         ber_int_t               ldo_version;
144         ber_int_t               ldo_deref;
145         ber_int_t               ldo_timelimit;
146         ber_int_t               ldo_sizelimit;
147
148 #ifdef HAVE_TLS
149         int                     ldo_tls_mode;
150 #endif
151
152         LDAPURLDesc *ldo_defludp;
153         int             ldo_defport;
154         char*   ldo_defbase;
155         char*   ldo_defbinddn;  /* bind dn */
156
157 #ifdef HAVE_CYRUS_SASL
158         char*   ldo_def_sasl_mech;              /* SASL Mechanism(s) */
159         char*   ldo_def_sasl_realm;             /* SASL realm */
160         char*   ldo_def_sasl_authcid;   /* SASL authentication identity */
161         char*   ldo_def_sasl_authzid;   /* SASL authorization identity */
162
163         /* SASL Security Properties */
164         struct sasl_security_properties ldo_sasl_secprops;
165 #endif
166
167         int             ldo_refhoplimit;        /* limit on referral nesting */
168
169         /* LDAPv3 server and client controls */
170         LDAPControl     **ldo_sctrls;
171         LDAPControl **ldo_cctrls;
172
173         /* LDAP rebind callback function */
174         LDAP_REBIND_PROC *ldo_rebind_proc;
175         void *ldo_rebind_params;
176
177         LDAP_BOOLEANS ldo_booleans;     /* boolean options */
178 };
179
180
181 /*
182  * structure for representing an LDAP server connection
183  */
184 typedef struct ldap_conn {
185         Sockbuf         *lconn_sb;
186 #ifdef HAVE_TLS
187         /* tls context */
188         void            *lconn_tls_ctx;
189 #endif
190 #ifdef HAVE_CYRUS_SASL
191         void            *lconn_sasl_ctx;
192 #endif
193         int                     lconn_refcnt;
194         time_t          lconn_lastused; /* time */
195         int                     lconn_rebind_inprogress;        /* set if rebind in progress */
196         char            ***lconn_rebind_queue;          /* used if rebind in progress */
197         int                     lconn_status;
198 #define LDAP_CONNST_NEEDSOCKET          1
199 #define LDAP_CONNST_CONNECTING          2
200 #define LDAP_CONNST_CONNECTED           3
201         LDAPURLDesc             *lconn_server;
202 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
203         char                    *lconn_krbinstance;
204 #endif
205         BerElement              *lconn_ber;     /* ber receiving on this conn. */
206
207         struct ldap_conn *lconn_next;
208 } LDAPConn;
209
210
211 /*
212  * structure used to track outstanding requests
213  */
214 typedef struct ldapreq {
215         ber_int_t               lr_msgid;       /* the message id */
216         int             lr_status;      /* status of request */
217 #define LDAP_REQST_COMPLETED    0
218 #define LDAP_REQST_INPROGRESS   1
219 #define LDAP_REQST_CHASINGREFS  2
220 #define LDAP_REQST_NOTCONNECTED 3
221 #define LDAP_REQST_WRITING      4
222         int             lr_outrefcnt;   /* count of outstanding referrals */
223         ber_int_t               lr_origid;      /* original request's message id */
224         int             lr_parentcnt;   /* count of parent requests */
225         ber_tag_t               lr_res_msgtype; /* result message type */
226         ber_int_t               lr_res_errno;   /* result LDAP errno */
227         char            *lr_res_error;  /* result error string */
228         char            *lr_res_matched;/* result matched DN string */
229         BerElement      *lr_ber;        /* ber encoded request contents */
230         LDAPConn        *lr_conn;       /* connection used to send request */
231         struct ldapreq  *lr_parent;     /* request that spawned this referral */
232         struct ldapreq  *lr_child;      /* first child request */
233         struct ldapreq  *lr_refnext;    /* next referral spawned */
234         struct ldapreq  *lr_prev;       /* previous request */
235         struct ldapreq  *lr_next;       /* next request */
236 } LDAPRequest;
237
238 /*
239  * structure for client cache
240  */
241 #define LDAP_CACHE_BUCKETS      31      /* cache hash table size */
242 typedef struct ldapcache {
243         LDAPMessage     *lc_buckets[LDAP_CACHE_BUCKETS];/* hash table */
244         LDAPMessage     *lc_requests;                   /* unfulfilled reqs */
245         long            lc_timeout;                     /* request timeout */
246         ber_len_t               lc_maxmem;                      /* memory to use */
247         ber_len_t               lc_memused;                     /* memory in use */
248         int             lc_enabled;                     /* enabled? */
249         unsigned long   lc_options;                     /* options */
250 #define LDAP_CACHE_OPT_CACHENOERRS      0x00000001
251 #define LDAP_CACHE_OPT_CACHEALLERRS     0x00000002
252 }  LDAPCache;
253
254 /*
255  * structure containing referral request info for rebind procedure
256  */
257 typedef struct ldapreqinfo {
258         ber_len_t       ri_msgid;
259         int                     ri_request;
260         char            *ri_url;
261 } LDAPreqinfo;
262
263 /*
264  * structure representing an ldap connection
265  */
266
267 struct ldap {
268         Sockbuf         *ld_sb;         /* socket descriptor & buffer */
269
270         struct ldapoptions ld_options;
271
272 #define ld_valid                ld_options.ldo_valid
273 #define ld_debug                ld_options.ldo_debug
274
275 #define ld_deref                ld_options.ldo_deref
276 #define ld_timelimit    ld_options.ldo_timelimit
277 #define ld_sizelimit    ld_options.ldo_sizelimit
278
279 #define ld_defbinddn    ld_options.ldo_defbinddn
280 #define ld_defbase              ld_options.ldo_defbase
281 #define ld_defhost              ld_options.ldo_defhost
282 #define ld_defport              ld_options.ldo_defport
283
284 #define ld_refhoplimit  ld_options.ldo_refhoplimit
285
286 #define ld_sctrls               ld_options.ldo_sctrls
287 #define ld_cctrls               ld_options.ldo_cctrls
288 #define ld_rebind_proc  ld_options.ldo_rebind_proc
289 #define ld_rebind_params        ld_options.ldo_rebind_params
290
291 #define ld_version              ld_options.ldo_version
292
293         unsigned short  ld_lberoptions;
294
295         ber_int_t       ld_errno;
296         char    *ld_error;
297         char    *ld_matched;
298         ber_len_t               ld_msgid;
299
300         /* do not mess with these */
301         LDAPRequest     *ld_requests;   /* list of outstanding requests */
302         LDAPMessage     *ld_responses;  /* list of outstanding responses */
303
304         ber_int_t               *ld_abandoned;  /* array of abandoned requests */
305
306         LDAPCache       *ld_cache;      /* non-null if cache is initialized */
307
308         /* do not mess with the rest though */
309
310         LDAPConn        *ld_defconn;    /* default connection */
311         LDAPConn        *ld_conns;      /* list of server connections */
312         void            *ld_selectinfo; /* platform specifics for select */
313 };
314 #define LDAP_VALID(ld)  ( (ld)->ld_valid == LDAP_VALID_SESSION )
315
316 #ifdef LDAP_R_COMPILE
317 #ifdef HAVE_RES_QUERY
318 LDAP_V ( ldap_pvt_thread_mutex_t ) ldap_int_resolv_mutex;
319 #endif
320
321 #ifdef HAVE_CYRUS_SASL
322 LDAP_V( ldap_pvt_thread_mutex_t ) ldap_int_sasl_mutex;
323 #endif
324 #endif
325
326 /*
327  * in init.c
328  */
329
330 LDAP_V ( struct ldapoptions ) ldap_int_global_options;
331
332 LDAP_F ( void ) ldap_int_initialize LDAP_P((struct ldapoptions *, int *));
333 LDAP_F ( void ) ldap_int_initialize_global_options LDAP_P((
334         struct ldapoptions *, int *));
335
336 /* memory.c */
337         /* simple macros to realloc for now */
338 #define LDAP_INT_MALLOC(s)              (LBER_MALLOC((s)))
339 #define LDAP_INT_CALLOC(n,s)    (LBER_CALLOC((n),(s)))
340 #define LDAP_INT_REALLOC(p,s)   (LBER_REALLOC((p),(s)))
341 #define LDAP_INT_FREE(p)                (LBER_FREE((p)))
342 #define LDAP_INT_VFREE(v)               (LBER_VFREE((void **)(v)))
343 #define LDAP_INT_STRDUP(s)              (LBER_STRDUP((s)))
344
345 #define LDAP_MALLOC(s)          (LBER_MALLOC((s)))
346 #define LDAP_CALLOC(n,s)        (LBER_CALLOC((n),(s)))
347 #define LDAP_REALLOC(p,s)       (LBER_REALLOC((p),(s)))
348 #define LDAP_FREE(p)            (LBER_FREE((p)))
349 #define LDAP_VFREE(v)           (LBER_VFREE((void **)(v)))
350 #define LDAP_STRDUP(s)          (LBER_STRDUP((s)))
351 #define LDAP_STRNDUP(s,l)       (LBER_STRNDUP((s),(l)))
352
353 /*
354  * in error.c
355  */
356 LDAP_F (void) ldap_int_error_init( void );
357
358 /*
359  * in unit-int.c
360  */
361 LDAP_F (void) ldap_int_utils_init LDAP_P(( void ));
362
363
364 /*
365  * in print.c
366  */
367 LDAP_F (int) ldap_log_printf LDAP_P((LDAP *ld, int level, const char *fmt, ...)) LDAP_GCCATTR((format(printf, 3, 4)));
368
369 /*
370  * in cache.c
371  */
372 LDAP_F (void) ldap_add_request_to_cache LDAP_P(( LDAP *ld, ber_tag_t msgtype,
373         BerElement *request ));
374 LDAP_F (void) ldap_add_result_to_cache LDAP_P(( LDAP *ld, LDAPMessage *result ));
375 LDAP_F (int) ldap_check_cache LDAP_P(( LDAP *ld, ber_tag_t msgtype, BerElement *request ));
376
377 /*
378  * in controls.c
379  */
380 LDAP_F (LDAPControl *) ldap_control_dup LDAP_P((
381         const LDAPControl *ctrl ));
382
383 LDAP_F (LDAPControl **) ldap_controls_dup LDAP_P((
384         LDAPControl *const *ctrls ));
385
386 LDAP_F (int) ldap_int_get_controls LDAP_P((
387         BerElement *be,
388         LDAPControl ***ctrlsp));
389
390 LDAP_F (int) ldap_int_put_controls LDAP_P((
391         LDAP *ld,
392         LDAPControl *const *ctrls,
393         BerElement *ber ));
394
395 LDAP_F (int) ldap_int_client_controls LDAP_P((
396         LDAP *ld,
397         LDAPControl **ctrlp ));
398
399 /*
400  * in dsparse.c
401  */
402 LDAP_F (int) ldap_int_next_line_tokens LDAP_P(( char **bufp, ber_len_t *blenp, char ***toksp ));
403
404 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
405 /*
406  * in kerberos.c
407  */
408 LDAP_F (char *) ldap_get_kerberosv4_credentials LDAP_P((
409         LDAP *ld,
410         LDAP_CONST char *who,
411         LDAP_CONST char *service,
412         ber_len_t *len ));
413
414 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
415
416
417 /*
418  * in open.c
419  */
420 LDAP_F (int) ldap_open_defconn( LDAP *ld );
421 LDAP_F (int) ldap_int_open_connection( LDAP *ld,
422         LDAPConn *conn, LDAPURLDesc *srvlist, int async );
423
424 /*
425  * in os-ip.c
426  */
427 LDAP_V (int) ldap_int_tblsize;
428 LDAP_F (int) ldap_int_timeval_dup( struct timeval **dest, const struct timeval *tm );
429 LDAP_F (int) ldap_connect_to_host( LDAP *ld, Sockbuf *sb,
430         int proto, const char *host, unsigned long address, int port,
431         int async );
432
433 #if defined(LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND) || \
434         defined(HAVE_TLS) || defined(HAVE_CYRUS_SASL)
435 LDAP_V (char *) ldap_int_hostname;
436 LDAP_F (char *) ldap_host_connected_to( Sockbuf *sb );
437 #endif
438
439 LDAP_F (void) ldap_int_ip_init( void );
440 LDAP_F (int) ldap_int_select( LDAP *ld, struct timeval *timeout );
441 LDAP_F (void *) ldap_new_select_info( void );
442 LDAP_F (void) ldap_free_select_info( void *sip );
443 LDAP_F (void) ldap_mark_select_write( LDAP *ld, Sockbuf *sb );
444 LDAP_F (void) ldap_mark_select_read( LDAP *ld, Sockbuf *sb );
445 LDAP_F (void) ldap_mark_select_clear( LDAP *ld, Sockbuf *sb );
446 LDAP_F (int) ldap_is_read_ready( LDAP *ld, Sockbuf *sb );
447 LDAP_F (int) ldap_is_write_ready( LDAP *ld, Sockbuf *sb );
448
449 /*
450  * in os-local.c
451  */
452 #ifdef LDAP_PF_LOCAL
453 LDAP_F (int) ldap_connect_to_path( LDAP *ld, Sockbuf *sb,
454         const char *path, int async );
455 #endif /* LDAP_PF_LOCAL */
456
457 /*
458  * in request.c
459  */
460 LDAP_F (ber_int_t) ldap_send_initial_request( LDAP *ld, ber_tag_t msgtype,
461         const char *dn, BerElement *ber );
462 LDAP_F (BerElement *) ldap_alloc_ber_with_options( LDAP *ld );
463 LDAP_F (void) ldap_set_ber_options( LDAP *ld, BerElement *ber );
464
465 LDAP_F (int) ldap_send_server_request( LDAP *ld, BerElement *ber, ber_int_t msgid, LDAPRequest *parentreq, LDAPURLDesc *srvlist, LDAPConn *lc, LDAPreqinfo *bind );
466 LDAP_F (LDAPConn *) ldap_new_connection( LDAP *ld, LDAPURLDesc *srvlist, int use_ldsb, int connect, LDAPreqinfo *bind );
467 LDAP_F (LDAPRequest *) ldap_find_request_by_msgid( LDAP *ld, ber_int_t msgid );
468 LDAP_F (void) ldap_free_request( LDAP *ld, LDAPRequest *lr );
469 LDAP_F (void) ldap_free_connection( LDAP *ld, LDAPConn *lc, int force, int unbind );
470 LDAP_F (void) ldap_dump_connection( LDAP *ld, LDAPConn *lconns, int all );
471 LDAP_F (void) ldap_dump_requests_and_responses( LDAP *ld );
472 LDAP_F (int) ldap_chase_referrals( LDAP *ld, LDAPRequest *lr,
473         char **errstrp, int sref, int *hadrefp );
474 LDAP_F (int) ldap_chase_v3referrals( LDAP *ld, LDAPRequest *lr,
475         char **refs, int sref, char **referralsp, int *hadrefp );
476 LDAP_F (int) ldap_append_referral( LDAP *ld, char **referralsp, char *s );
477
478 /*
479  * in result.c:
480  */
481 LDAP_F (char *) ldap_int_msgtype2str( ber_tag_t tag );
482
483 /*
484  * in search.c
485  */
486 LDAP_F (BerElement *) ldap_build_search_req LDAP_P((
487         LDAP *ld,
488         const char *base,
489         ber_int_t scope,
490         const char *filter,
491         char **attrs,
492         ber_int_t attrsonly,
493         LDAPControl **sctrls,
494         LDAPControl **cctrls,
495         ber_int_t timelimit,
496         ber_int_t sizelimit ));
497
498 LDAP_F( int ) ldap_int_put_filter LDAP_P((
499         BerElement *ber,
500         char *str ));
501
502 /*
503  * in unbind.c
504  */
505 LDAP_F (int) ldap_ld_free LDAP_P((
506         LDAP *ld,
507         int close,
508         LDAPControl **sctrls,
509         LDAPControl **cctrls ));
510
511 LDAP_F (int) ldap_send_unbind LDAP_P((
512         LDAP *ld,
513         Sockbuf *sb,
514         LDAPControl **sctrls,
515         LDAPControl **cctrls ));
516
517 /*
518  * in url.c
519  */
520 LDAP_F (LDAPURLDesc *) ldap_url_dup LDAP_P((
521         LDAPURLDesc *ludp ));
522
523 LDAP_F (LDAPURLDesc *) ldap_url_duplist LDAP_P((
524         LDAPURLDesc *ludlist ));
525
526 LDAP_F (int) ldap_url_parselist LDAP_P((
527         LDAPURLDesc **ludlist,
528         const char *url ));
529
530 LDAP_F (int) ldap_url_parsehosts LDAP_P((
531         LDAPURLDesc **ludlist,
532         const char *hosts,
533         int port ));
534
535 LDAP_F (char *) ldap_url_list2hosts LDAP_P((
536         LDAPURLDesc *ludlist ));
537
538 LDAP_F (char *) ldap_url_list2urls LDAP_P((
539         LDAPURLDesc *ludlist ));
540
541 LDAP_F (void) ldap_free_urllist LDAP_P((
542         LDAPURLDesc *ludlist ));
543
544 /*
545  * in cyrus.c
546  */
547
548 LDAP_F (int) ldap_int_sasl_init LDAP_P(( void ));
549
550 LDAP_F (int) ldap_int_sasl_open LDAP_P((
551         LDAP *ld, LDAPConn *conn,
552         const char* host, ber_len_t ssf ));
553 LDAP_F (int) ldap_int_sasl_close LDAP_P(( LDAP *ld, LDAPConn *conn ));
554
555 LDAP_F (int) ldap_int_sasl_external LDAP_P((
556         LDAP *ld, LDAPConn *conn,
557         const char* authid, ber_len_t ssf ));
558
559 LDAP_F (int) ldap_int_sasl_get_option LDAP_P(( LDAP *ld,
560         int option, void *arg ));
561 LDAP_F (int) ldap_int_sasl_set_option LDAP_P(( LDAP *ld,
562         int option, void *arg ));
563 LDAP_F (int) ldap_int_sasl_config LDAP_P(( struct ldapoptions *lo,
564         int option, const char *arg ));
565
566 LDAP_F (int) ldap_int_sasl_bind LDAP_P((
567         LDAP *ld,
568         const char *,
569         const char *,
570         LDAPControl **, LDAPControl **,
571
572         /* should be passed in client controls */
573         unsigned flags,
574         LDAP_SASL_INTERACT_PROC *interact,
575         void *defaults ));
576
577
578 /*
579  * in tls.c
580  */
581 LDAP_F (int) ldap_int_tls_config LDAP_P(( LDAP *ld,
582         int option, const char *arg ));
583
584 LDAP_F (int) ldap_int_tls_start LDAP_P(( LDAP *ld,
585         LDAPConn *conn, LDAPURLDesc *srv ));
586
587 LDAP_END_DECL
588
589 #endif /* _LDAP_INT_H */