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