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