]> git.sur5r.net Git - openldap/blob - include/ldap.h
More options for TLS
[openldap] / include / ldap.h
1 /*
2  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted only
6  * as authorized by the OpenLDAP Public License.  A copy of this
7  * license is available at http://www.OpenLDAP.org/license.html or
8  * in file LICENSE in the top-level directory of the distribution.
9  */
10 /* Portions
11  * Copyright (c) 1990 Regents of the University of Michigan.
12  * All rights reserved.
13  *
14  * Redistribution and use in source and binary forms are permitted
15  * provided that this notice is preserved and that due credit is given
16  * to the University of Michigan at Ann Arbor. The name of the University
17  * may not be used to endorse or promote products derived from this
18  * software without specific prior written permission. This software
19  * is provided ``as is'' without express or implied warranty.
20  */
21
22 #ifndef _LDAP_H
23 #define _LDAP_H
24
25 #include <ldap_cdefs.h>
26
27 /* draft spec requires ldap.h include lber declarations */
28 #include <lber.h>
29
30 LDAP_BEGIN_DECL
31
32 #define LDAP_VERSION1   1
33 #define LDAP_VERSION2   2
34 #define LDAP_VERSION3   3
35
36 #define LDAP_VERSION_MIN        LDAP_VERSION2
37 #define LDAP_VERSION            LDAP_VERSION2
38 #define LDAP_VERSION_MAX        LDAP_VERSION3
39
40 /*
41  * We'll use 2000+draft revision for our API version number
42  * As such, the number will be above the old RFC but below 
43  * whatever number does finally get assigned
44  */
45 #define LDAP_API_VERSION        2003
46 #define LDAP_VENDOR_NAME        "OpenLDAP"
47 /* We'll eventually release as 200 */
48 #define LDAP_VENDOR_VERSION     192
49
50 /* OpenLDAP API Features */
51 #define LDAP_API_FEATURE_X_OPENLDAP LDAP_VENDOR_VERSION
52
53 /* include LDAP_API_FEATURE defines */
54 #include <ldap_features.h>
55
56 #if defined( LDAP_API_FEATURE_X_OPENLDAP_REENTRANT ) || \
57         ( defined( LDAP_THREAD_SAFE ) && \
58                 defined( LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE ) )
59         /* -lldap may or may not be thread safe */
60         /* -lldap_r, if available, is always thread safe */
61 #       define  LDAP_API_FEATURE_THREAD_SAFE 1
62 #endif
63 #if defined( LDAP_THREAD_SAFE ) && \
64         defined( LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE )
65 /* #define LDAP_API_FEATURE_SESSION_SAFE        1       */
66 /* #define LDAP_API_OPERATION_SESSION_SAFE      1       */
67 #endif
68
69 #define LDAP_PORT               389
70 #ifdef HAVE_TLS
71 #define LDAP_TLS_PORT           636
72 #endif
73
74 #define LDAP_ROOT_DSE                           ""
75 #define LDAP_NO_ATTRS                           "1.1"
76 #define LDAP_ALL_USER_ATTRIBUTES        "*"
77
78 /*
79  * LDAP_OPTions defined by draft-ldapext-ldap-c-api-02
80  * 0x0000 - 0x0fff reserved for api options
81  * 0x1000 - 0x3fff reserved for api extended options
82  * 0x4000 - 0x7fff reserved for private and experimental options
83  */
84 #define LDAP_OPT_API_INFO                       0x0000
85 #define LDAP_OPT_DESC                           0x0001
86 #define LDAP_OPT_DEREF                          0x0002
87 #define LDAP_OPT_SIZELIMIT                      0x0003
88 #define LDAP_OPT_TIMELIMIT                      0x0004
89 /* 0x05 - 0x07 not defined by current draft */
90 #define LDAP_OPT_REFERRALS                      0x0008
91 #define LDAP_OPT_RESTART                        0x0009
92 /* 0x0a - 0x10 not defined by current draft */
93 #define LDAP_OPT_PROTOCOL_VERSION       0x0011
94 #define LDAP_OPT_SERVER_CONTROLS        0x0012
95 #define LDAP_OPT_CLIENT_CONTROLS        0x0013
96 /* 0x14 not defined by current draft */
97 #define LDAP_OPT_API_FEATURE_INFO       0x0015
98
99 /* 0x16 - 0x2f not defined by current draft */
100 #define LDAP_OPT_HOST_NAME                      0x0030
101 #define LDAP_OPT_ERROR_NUMBER           0x0031
102 #define LDAP_OPT_ERROR_STRING           0x0032
103
104 /* 0x33 - 0x0fff not defined by current draft */
105
106 /* extended options - none */
107
108 /* private and experimental options */
109 #define LDAP_OPT_DNS                            0x4001  /* use DN & DNS */
110
111 /* OpenLDAP specific options */
112 #define LDAP_OPT_DEBUG_LEVEL            0x5001  /* debug level */
113 #define LDAP_OPT_TIMEOUT                        0x5002  /* default timeout */
114 #define LDAP_OPT_REFHOPLIMIT            0x5003  /* ref hop limit */
115 #define LDAP_OPT_MATCHED_DN                     0x5004  /* should have been in draft */
116
117 /* TLS options */
118 #define LDAP_OPT_X_TLS_CACERTFILE       0x6001
119 #define LDAP_OPT_X_TLS_CACERTDIR        0x6002
120 #define LDAP_OPT_X_TLS_CERT             0x6003
121 #define LDAP_OPT_X_TLS_CERTFILE         0x6004
122 #define LDAP_OPT_X_TLS_KEYFILE          0x6005
123 #define LDAP_OPT_X_TLS_REQUIRE_CERT     0x6006
124 #define LDAP_OPT_X_TLS                  0x6007
125 #define LDAP_OPT_X_TLS_PROTOCOL         0x6008
126 #define LDAP_OPT_X_TLS_CIPHER_SUITE     0x6009
127
128 #define LDAP_OPT_X_TLS_NEVER            0
129 #define LDAP_OPT_X_TLS_HARD             1
130 #define LDAP_OPT_X_TLS_DEMAND           2
131 #define LDAP_OPT_X_TLS_ALLOW            3
132 #define LDAP_OPT_X_TLS_TRY              4
133
134 /* on/off values */
135 #define LDAP_OPT_ON             ((void *) 1)
136 #define LDAP_OPT_OFF    ((void *) 0)
137
138 #define LDAP_OPT_SUCCESS        0
139 #define LDAP_OPT_ERROR          (-1)
140
141 #define LDAP_API_INFO_VERSION   (1)
142 typedef struct ldapapiinfo {
143         int             ldapai_info_version;            /* version of LDAPAPIInfo (1) */
144         int             ldapai_api_version;                     /* revision of API supported */
145         int             ldapai_protocol_version;        /* highest LDAP version supported */
146         char    **ldapai_extensions;            /* names of API extensions */
147         char    *ldapai_vendor_name;            /* name of supplier */
148         int             ldapai_vendor_version;          /* supplier-specific version * 100 */
149 } LDAPAPIInfo;
150
151 #define LDAP_FEATURE_INFO_VERSION (1) /* version of api feature structure */
152 typedef struct ldap_apifeature_info {
153         int             ldapaif_info_version; /* version of this struct (1) */
154         char*   ldapaif_name;    /* matches LDAP_API_FEATURE_... less the prefix */
155         int             ldapaif_version; /* matches the value LDAP_API_FEATURE_... */
156 } LDAPAPIFeatureInfo;
157
158 typedef struct ldapcontrol {
159         char *                  ldctl_oid;
160         struct berval   ldctl_value;
161         char                    ldctl_iscritical;
162 } LDAPControl;
163
164 /* LDAP Controls */
165         /* chase referrals controls */
166 #define LDAP_CONTROL_REFERRALS  "1.2.840.113666.1.4.616"
167 #define LDAP_CHASE_SUBORDINATE_REFERRALS        0x0020
168 #define LDAP_CHASE_EXTERNAL_REFERRALS   0x0040
169
170 /* LDAP Unsolicited Notifications */
171 #define LDAP_NOTICE_DISCONNECT  "1.3.6.1.4.1.1466.20036"
172
173 /* LDAP Extended Operations */
174
175
176 /* 
177  * specific LDAP instantiations of BER types we know about
178  */
179
180 /* Overview of LBER tag construction
181  *
182  *      Bits
183  *      ______
184  *      8 7 | CLASS
185  *      0 0 = UNIVERSAL
186  *      0 1 = APPLICATION
187  *      1 0 = CONTEXT-SPECIFIC
188  *      1 1 = PRIVATE
189  *              _____
190  *              | 6 | DATA-TYPE
191  *                0 = PRIMITIVE
192  *                1 = CONSTRUCTED
193  *                      ___________
194  *                      | 5 ... 1 | TAG-NUMBER
195  */
196
197 /* general stuff */
198 #define LDAP_TAG_MESSAGE        (ber_tag_t) 0x30U       /* constructed + 16 */
199 #define LDAP_TAG_MSGID          (ber_tag_t) 0x02U       /* integer */
200 #define LDAP_TAG_LDAPDN         (ber_tag_t) 0x04U       /* octect string */
201 #define LDAP_TAG_LDAPCRED       (ber_tag_t) 0x04U       /* octect string */
202 #define LDAP_TAG_CONTROLS       (ber_tag_t) 0xa0U       /* context specific + constructed + 0 */
203 #define LDAP_TAG_REFERRAL       (ber_tag_t) 0xa3U       /* context specific + constructed + 3 */
204
205 #define LDAP_TAG_NEWSUPERIOR    (ber_tag_t) 0x80U       /* context-specific + primitive + 0 */
206
207 #define LDAP_TAG_EXOP_REQ_OID   (ber_tag_t) 0x80U       /* context specific + primitive */
208 #define LDAP_TAG_EXOP_REQ_VALUE (ber_tag_t) 0x81U       /* context specific + primitive */
209 #define LDAP_TAG_EXOP_RES_OID   (ber_tag_t) 0x8aU       /* context specific + primitive */
210 #define LDAP_TAG_EXOP_RES_VALUE (ber_tag_t) 0x8bU       /* context specific + primitive */
211
212 #define LDAP_TAG_SASL_RES_CREDS (ber_tag_t) 0x87U       /* context specific + primitive */
213
214
215
216
217 /* possible operations a client can invoke */
218 #define LDAP_REQ_BIND                   (ber_tag_t) 0x60U       /* application + constructed */
219 #define LDAP_REQ_UNBIND                 (ber_tag_t) 0x42U       /* application + primitive   */
220 #define LDAP_REQ_SEARCH                 (ber_tag_t) 0x63U       /* application + constructed */
221 #define LDAP_REQ_MODIFY                 (ber_tag_t) 0x66U       /* application + constructed */
222 #define LDAP_REQ_ADD                    (ber_tag_t) 0x68U       /* application + constructed */
223 #define LDAP_REQ_DELETE                 (ber_tag_t) 0x4aU       /* application + primitive   */
224 #define LDAP_REQ_MODRDN                 (ber_tag_t) 0x6cU       /* application + constructed */
225 #define LDAP_REQ_MODDN                  LDAP_REQ_MODRDN 
226 #define LDAP_REQ_RENAME                 LDAP_REQ_MODRDN 
227 #define LDAP_REQ_COMPARE                (ber_tag_t) 0x6eU       /* application + constructed */
228 #define LDAP_REQ_ABANDON                (ber_tag_t) 0x50U       /* application + primitive   */
229 #define LDAP_REQ_EXTENDED               (ber_tag_t) 0x77U       /* application + constructed */
230
231 /* possible result types a server can return */
232 #define LDAP_RES_BIND                   (ber_tag_t) 0x61U       /* application + constructed */
233 #define LDAP_RES_SEARCH_ENTRY           (ber_tag_t) 0x64U       /* application + constructed */
234 #define LDAP_RES_SEARCH_REFERENCE       (ber_tag_t) 0x73U       /* V3: application + constructed */
235 #define LDAP_RES_SEARCH_RESULT          (ber_tag_t) 0x65U       /* application + constructed */
236 #define LDAP_RES_MODIFY                 (ber_tag_t) 0x67U       /* application + constructed */
237 #define LDAP_RES_ADD                    (ber_tag_t) 0x69U       /* application + constructed */
238 #define LDAP_RES_DELETE                 (ber_tag_t) 0x6bU       /* application + constructed */
239 #define LDAP_RES_MODRDN                 (ber_tag_t) 0x6dU       /* application + constructed */
240 #define LDAP_RES_MODDN                  LDAP_RES_MODRDN /* application + constructed */
241 #define LDAP_RES_RENAME                 LDAP_RES_MODRDN /* application + constructed */
242 #define LDAP_RES_COMPARE                (ber_tag_t) 0x6fU       /* application + constructed */
243 #define LDAP_RES_EXTENDED               (ber_tag_t) 0x78U       /* V3: application + constructed */
244 #define LDAP_RES_ANY                    ((ber_tag_t)(~0))
245
246
247 /* sasl methods */
248 #define LDAP_SASL_SIMPLE                        NULL
249
250 /* authentication methods available */
251 #define LDAP_AUTH_NONE          (ber_tag_t) 0x00U       /* no authentication              */
252 #define LDAP_AUTH_SIMPLE        (ber_tag_t) 0x80U       /* context specific + primitive   */
253 #define LDAP_AUTH_SASL          (ber_tag_t) 0xa3U       /* context specific + primitive   */
254 #define LDAP_AUTH_KRBV4         (ber_tag_t) 0xffU       /* means do both of the following */
255 #define LDAP_AUTH_KRBV41        (ber_tag_t) 0x81U       /* context specific + primitive   */
256 #define LDAP_AUTH_KRBV42        (ber_tag_t) 0x82U       /* context specific + primitive   */
257
258
259 /* filter types */
260 #define LDAP_FILTER_AND         (ber_tag_t) 0xa0U       /* context specific + constructed */
261 #define LDAP_FILTER_OR          (ber_tag_t) 0xa1U       /* context specific + constructed */
262 #define LDAP_FILTER_NOT         (ber_tag_t) 0xa2U       /* context specific + constructed */
263 #define LDAP_FILTER_EQUALITY    (ber_tag_t) 0xa3U       /* context specific + constructed */
264 #define LDAP_FILTER_SUBSTRINGS  (ber_tag_t) 0xa4U       /* context specific + constructed */
265 #define LDAP_FILTER_GE          (ber_tag_t) 0xa5U       /* context specific + constructed */
266 #define LDAP_FILTER_LE          (ber_tag_t) 0xa6U       /* context specific + constructed */
267 #define LDAP_FILTER_PRESENT     (ber_tag_t) 0x87U       /* context specific + primitive   */
268 #define LDAP_FILTER_APPROX      (ber_tag_t) 0xa8U       /* context specific + constructed */
269 #define LDAP_FILTER_EXTENDED    (ber_tag_t) 0xa9U       /* context specific + constructed */
270
271 /* extended filter component types */
272 #define LDAP_FILTER_EXTENDED_OID        (ber_tag_t) 0x81U       /* context specific */
273 #define LDAP_FILTER_EXTENDED_TYPE       (ber_tag_t) 0x82U       /* context specific */
274 #define LDAP_FILTER_EXTENDED_VALUE      (ber_tag_t) 0x83U       /* context specific */
275 #define LDAP_FILTER_EXTENDED_DNATTRS    (ber_tag_t) 0x84U       /* context specific */
276
277 /* substring filter component types */
278 #define LDAP_SUBSTRING_INITIAL  (ber_tag_t) 0x80U       /* context specific */
279 #define LDAP_SUBSTRING_ANY      (ber_tag_t) 0x81U       /* context specific */
280 #define LDAP_SUBSTRING_FINAL    (ber_tag_t) 0x82U       /* context specific */
281
282 /* search scopes */
283 #define LDAP_SCOPE_BASE         (ber_int_t) 0x0000
284 #define LDAP_SCOPE_ONELEVEL     (ber_int_t) 0x0001
285 #define LDAP_SCOPE_SUBTREE      (ber_int_t) 0x0002
286
287 /* for modifications */
288 typedef struct ldapmod {
289         int             mod_op;
290 #define LDAP_MOD_ADD            (ber_int_t) 0x0000
291 #define LDAP_MOD_DELETE         (ber_int_t) 0x0001
292 #define LDAP_MOD_REPLACE        (ber_int_t) 0x0002
293 #define LDAP_MOD_BVALUES        (ber_int_t) 0x0080
294 /* IMPORTANT: do not use code 0x1000 (or above),
295  * it is used internally by the backends!
296  * (see ldap/servers/slapd/slap.h)
297  * JCG 05/1999 (gomez@engr.sgi.com)
298  */
299         char            *mod_type;
300         union mod_vals_u {
301                 char            **modv_strvals;
302                 struct berval   **modv_bvals;
303         } mod_vals;
304 #define mod_values      mod_vals.modv_strvals
305 #define mod_bvalues     mod_vals.modv_bvals
306 } LDAPMod;
307
308 /* 
309  * possible error codes we can return
310  */
311
312 #define LDAP_RANGE(n,x,y)       (((x) <= (n)) && ((n) <= (y)))
313
314 #define LDAP_SUCCESS                    0x00
315 #define LDAP_OPERATIONS_ERROR           0x01
316 #define LDAP_PROTOCOL_ERROR             0x02
317 #define LDAP_TIMELIMIT_EXCEEDED         0x03
318 #define LDAP_SIZELIMIT_EXCEEDED         0x04
319 #define LDAP_COMPARE_FALSE              0x05
320 #define LDAP_COMPARE_TRUE               0x06
321 #define LDAP_AUTH_METHOD_NOT_SUPPORTED  0x07
322 #define LDAP_STRONG_AUTH_NOT_SUPPORTED  LDAP_AUTH_METHOD_NOT_SUPPORTED
323 #define LDAP_STRONG_AUTH_REQUIRED       0x08
324 #define LDAP_PARTIAL_RESULTS            0x09    /* not listed in v3 */
325
326 #define LDAP_REFERRAL                           0x0a /* LDAPv3 */
327 #define LDAP_ADMINLIMIT_EXCEEDED        0x0b /* LDAPv3 */
328 #define LDAP_UNAVAILABLE_CRITICAL_EXTENSION     0x0c /* LDAPv3 */
329 #define LDAP_CONFIDENTIALITY_REQUIRED   0x0d /* LDAPv3 */
330 #define LDAP_SASL_BIND_IN_PROGRESS      0x0e /* LDAPv3 */       
331
332 #define LDAP_ATTR_ERROR(n)      LDAP_RANGE((n),0x10,0x15) /* 16-21 */
333
334 #define LDAP_NO_SUCH_ATTRIBUTE          0x10
335 #define LDAP_UNDEFINED_TYPE             0x11
336 #define LDAP_INAPPROPRIATE_MATCHING     0x12
337 #define LDAP_CONSTRAINT_VIOLATION       0x13
338 #define LDAP_TYPE_OR_VALUE_EXISTS       0x14
339 #define LDAP_INVALID_SYNTAX             0x15
340
341 #define LDAP_NAME_ERROR(n)      LDAP_RANGE((n),0x20,0x24) /* 32-34,36 */
342
343 #define LDAP_NO_SUCH_OBJECT             0x20
344 #define LDAP_ALIAS_PROBLEM              0x21
345 #define LDAP_INVALID_DN_SYNTAX          0x22
346 #define LDAP_IS_LEAF                    0x23 /* not LDAPv3 */
347 #define LDAP_ALIAS_DEREF_PROBLEM        0x24
348
349 #define LDAP_SECURITY_ERROR(n)  LDAP_RANGE((n),0x30,0x32) /* 48-50 */
350
351 #define LDAP_INAPPROPRIATE_AUTH         0x30
352 #define LDAP_INVALID_CREDENTIALS        0x31
353 #define LDAP_INSUFFICIENT_ACCESS        0x32
354
355 #define LDAP_SERVICE_ERROR(n)   LDAP_RANGE((n),0x33,0x36) /* 51-54 */
356
357 #define LDAP_BUSY                       0x33
358 #define LDAP_UNAVAILABLE                0x34
359 #define LDAP_UNWILLING_TO_PERFORM       0x35
360 #define LDAP_LOOP_DETECT                0x36
361
362 #define LDAP_UPDATE_ERROR(n)    LDAP_RANGE((n),0x40,0x47) /* 64-69,71 */
363
364 #define LDAP_NAMING_VIOLATION           0x40
365 #define LDAP_OBJECT_CLASS_VIOLATION     0x41
366 #define LDAP_NOT_ALLOWED_ON_NONLEAF     0x42
367 #define LDAP_NOT_ALLOWED_ON_RDN         0x43
368 #define LDAP_ALREADY_EXISTS             0x44
369 #define LDAP_NO_OBJECT_CLASS_MODS       0x45
370 #define LDAP_RESULTS_TOO_LARGE          0x46 /* CLDAP */
371 #define LDAP_AFFECTS_MULTIPLE_DSAS      0x47 /* LDAPv3 */
372
373 #define LDAP_OTHER                      0x50
374
375 #define LDAP_API_ERROR(n)               LDAP_RANGE((n),0x51,0xff) /* 81+ */
376
377 #define LDAP_SERVER_DOWN                0x51
378 #define LDAP_LOCAL_ERROR                0x52
379 #define LDAP_ENCODING_ERROR             0x53
380 #define LDAP_DECODING_ERROR             0x54
381 #define LDAP_TIMEOUT                    0x55
382 #define LDAP_AUTH_UNKNOWN               0x56
383 #define LDAP_FILTER_ERROR               0x57
384 #define LDAP_USER_CANCELLED             0x58
385 #define LDAP_PARAM_ERROR                0x59
386 #define LDAP_NO_MEMORY                  0x5a
387
388 #define LDAP_CONNECT_ERROR                              0x5b    /* new */
389 #define LDAP_NOT_SUPPORTED                              0x5c    /* new */
390 #define LDAP_CONTROL_NOT_FOUND                  0x5d    /* new */
391 #define LDAP_NO_RESULTS_RETURNED                0x5e    /* new */
392 #define LDAP_MORE_RESULTS_TO_RETURN             0x5f    /* new */
393 #define LDAP_CLIENT_LOOP                                0x60    /* new */
394 #define LDAP_REFERRAL_LIMIT_EXCEEDED    0x61    /* new */
395
396 /*
397  * This structure represents both ldap messages and ldap responses.
398  * These are really the same, except in the case of search responses,
399  * where a response has multiple messages.
400  */
401
402 typedef struct ldapmsg LDAPMessage;
403
404 /*
405  * structures for ldap getfilter routines
406  */
407
408 typedef struct ldap_filt_info {
409         char                    *lfi_filter;
410         char                    *lfi_desc;
411         int                     lfi_scope;      /* LDAP_SCOPE_BASE, etc */
412         int                     lfi_isexact;    /* exact match filter? */
413         struct ldap_filt_info   *lfi_next;
414 } LDAPFiltInfo;
415
416 typedef struct ldap_filt_list {
417     char                        *lfl_tag;
418     char                        *lfl_pattern;
419     char                        *lfl_delims;
420     LDAPFiltInfo                *lfl_ilist;
421     struct ldap_filt_list       *lfl_next;
422 } LDAPFiltList;
423
424
425 #define LDAP_FILT_MAXSIZ        1024
426
427 typedef struct ldap_filt_desc {
428         LDAPFiltList            *lfd_filtlist;
429         LDAPFiltInfo            *lfd_curfip;
430         LDAPFiltInfo            lfd_retfi;
431         char                    lfd_filter[ LDAP_FILT_MAXSIZ ];
432         char                    *lfd_curval;
433         char                    *lfd_curvalcopy;
434         char                    **lfd_curvalwords;
435         char                    *lfd_filtprefix;
436         char                    *lfd_filtsuffix;
437 } LDAPFiltDesc;
438
439
440 /*
441  * structure representing an ldap connection
442  */
443
444 typedef struct ldap LDAP;
445
446 #define LDAP_DEREF_NEVER        0x00
447 #define LDAP_DEREF_SEARCHING    0x01
448 #define LDAP_DEREF_FINDING      0x02
449 #define LDAP_DEREF_ALWAYS       0x03
450
451 #define LDAP_NO_LIMIT           0
452
453 /* how many messages to retrieve results for */
454 #define LDAP_MSG_ONE            0x00
455 #define LDAP_MSG_ALL            0x01
456 #define LDAP_MSG_RECEIVED       0x02
457
458 /*
459  * structure for ldap friendly mapping routines
460  */
461
462 typedef struct ldap_friendly {
463         char    *lf_unfriendly;
464         char    *lf_friendly;
465 } LDAPFriendlyMap;
466
467 /*
468  * types for ldap URL handling
469  */
470 typedef struct ldap_url_desc {
471     char        *lud_host;
472     int         lud_port;
473     char        *lud_dn;
474     char        **lud_attrs;
475     int         lud_scope;
476     char        *lud_filter;
477     char        *lud_string;    /* for internal use only */
478 } LDAPURLDesc;
479
480 #define LDAP_URL_ERR_NOTLDAP    0x01    /* URL doesn't begin with "ldap://" */
481 #define LDAP_URL_ERR_NODN               0x02    /* URL has no DN (required) */
482 #define LDAP_URL_ERR_BADSCOPE   0x03    /* URL scope string is invalid */
483 #define LDAP_URL_ERR_MEM                0x04    /* can't allocate memory space */
484
485 /*
486  * The API draft spec says we should declare (or cause to be declared)
487  * 'struct timeval'.   We don't.  See LDAPext discussions.
488  */
489 struct timeval;
490
491 /*
492  * in options.c:
493  */
494 LDAP_F( int )
495 ldap_get_option LDAP_P((
496         LDAP_CONST LDAP *ld,
497         int option,
498         void *outvalue));
499
500 LDAP_F( int )
501 ldap_set_option LDAP_P((
502         LDAP *ld,
503         int option,
504         LDAP_CONST void *invalue));
505
506
507 /*
508  * in controls.c:
509  */
510 LDAP_F( void )
511 ldap_control_free LDAP_P((
512         LDAPControl *ctrl ));
513
514 LDAP_F( void )
515 ldap_controls_free LDAP_P((
516         LDAPControl **ctrls ));
517
518   
519 /*
520  * in extended.c:
521  */
522 LDAP_F( int )
523 ldap_extended_operation LDAP_P((
524         LDAP                    *ld,
525         LDAP_CONST char *reqoid,
526         struct berval   *reqdata,
527         LDAPControl             **serverctrls,
528         LDAPControl             **clientctrls,
529         int                             *msgidp ));
530
531 LDAP_F( int )
532 ldap_extended_operation_s LDAP_P((
533         LDAP                    *ld,
534         LDAP_CONST char *reqoid,
535         struct berval   *reqdata,
536         LDAPControl             **serverctrls,
537         LDAPControl             **clientctrls,
538         char                    **retoidp,
539         struct berval   **retdatap ));
540
541 LDAP_F( int )
542 ldap_parse_extended_result LDAP_P((
543         LDAP                    *ld,
544         LDAPMessage             *res,
545         char                    **retoidp,
546         struct berval   **retdatap,
547         int                             freeit ));
548
549 /*
550  * in abandon.c:
551  */
552 LDAP_F( int )
553 ldap_abandon LDAP_P((
554         LDAP *ld,
555         int msgid ));
556
557 LDAP_F( int )
558 ldap_abandon_ext LDAP_P((
559         LDAP                    *ld,
560         int                             msgid,
561         LDAPControl             **serverctrls,
562         LDAPControl             **clientctrls ));
563
564
565 /*
566  * in add.c:
567  */
568 LDAP_F( int )
569 ldap_add_ext LDAP_P((
570         LDAP                    *ld,
571         LDAP_CONST char *dn,
572         LDAPMod                 **attrs,
573         LDAPControl             **serverctrls,
574         LDAPControl             **clientctrls,
575         int                     *msgidp ));
576
577 LDAP_F( int )
578 ldap_add_ext_s LDAP_P((
579         LDAP                    *ld,
580         LDAP_CONST char *dn,
581         LDAPMod                 **attrs,
582         LDAPControl             **serverctrls,
583         LDAPControl             **clientctrls ));
584
585 LDAP_F( int )
586 ldap_add LDAP_P((
587         LDAP *ld,
588         LDAP_CONST char *dn,
589         LDAPMod **attrs ));
590
591 LDAP_F( int )
592 ldap_add_s LDAP_P((
593         LDAP *ld,
594         LDAP_CONST char *dn,
595         LDAPMod **attrs ));
596
597
598 /*
599  * in sasl.c:
600  */
601 LDAP_F( int )
602 ldap_sasl_bind LDAP_P((
603         LDAP                    *ld,
604         LDAP_CONST char *dn,
605         LDAP_CONST char *mechanism,
606         struct berval   *cred,
607         LDAPControl             **serverctrls,
608         LDAPControl             **clientctrls,
609         int                             *msgidp ));
610
611 LDAP_F( int )
612 ldap_sasl_bind_s LDAP_P((
613         LDAP                    *ld,
614         LDAP_CONST char *dn,
615         LDAP_CONST char *mechanism,
616         struct berval   *cred,
617         LDAPControl             **serverctrls,
618         LDAPControl             **clientctrls,
619         struct berval   **servercredp ));
620
621 LDAP_F( int )
622 ldap_parse_sasl_bind_result LDAP_P((
623         LDAP                    *ld,
624         LDAPMessage             *res,
625         struct berval   **servercredp,
626         int                             freeit ));
627
628 /*
629  * in bind.c:
630  *      (deprecated)
631  */
632 LDAP_F( int )
633 ldap_bind LDAP_P((
634         LDAP *ld,
635         LDAP_CONST char *who,
636         LDAP_CONST char *passwd,
637         int authmethod ));
638
639 LDAP_F( int )
640 ldap_bind_s LDAP_P((
641         LDAP *ld,
642         LDAP_CONST char *who,
643         LDAP_CONST char *cred,
644         int authmethod ));
645
646 LDAP_F( void )
647 ldap_set_rebind_proc LDAP_P((
648         LDAP *ld,
649         int (*rebindproc) LDAP_P((
650                 LDAP *ld,
651                 char **dnp,
652                 char **passwdp,
653                 int *authmethodp,
654                 int freeit ))));
655
656
657 /*
658  * in sbind.c:
659  */
660 LDAP_F( int )
661 ldap_simple_bind LDAP_P((
662         LDAP *ld,
663         LDAP_CONST char *who,
664         LDAP_CONST char *passwd ));
665
666 LDAP_F( int )
667 ldap_simple_bind_s LDAP_P((
668         LDAP *ld,
669         LDAP_CONST char *who,
670         LDAP_CONST char *passwd ));
671
672
673 /*
674  * in kbind.c:
675  *      (deprecated)
676  */
677 LDAP_F( int )
678 ldap_kerberos_bind_s LDAP_P((
679         LDAP *ld,
680         LDAP_CONST char *who ));
681
682 LDAP_F( int )
683 ldap_kerberos_bind1 LDAP_P((
684         LDAP *ld,
685         LDAP_CONST char *who ));
686
687 LDAP_F( int )
688 ldap_kerberos_bind1_s LDAP_P((
689         LDAP *ld,
690         LDAP_CONST char *who ));
691
692 LDAP_F( int )
693 ldap_kerberos_bind2 LDAP_P((
694         LDAP *ld,
695         LDAP_CONST char *who ));
696
697 LDAP_F( int )
698 ldap_kerberos_bind2_s LDAP_P((
699         LDAP *ld,
700         LDAP_CONST char *who ));
701
702 /*
703  * in cache.c
704  * (deprecated)
705  */
706 LDAP_F( int )
707 ldap_enable_cache LDAP_P(( LDAP *ld, long timeout, ber_len_t maxmem ));
708
709 LDAP_F( void )
710 ldap_disable_cache LDAP_P(( LDAP *ld ));
711
712 LDAP_F( void )
713 ldap_set_cache_options LDAP_P(( LDAP *ld, unsigned long opts ));
714
715 LDAP_F( void )
716 ldap_destroy_cache LDAP_P(( LDAP *ld ));
717
718 LDAP_F( void )
719 ldap_flush_cache LDAP_P(( LDAP *ld ));
720
721 LDAP_F( void )
722 ldap_uncache_entry LDAP_P(( LDAP *ld, LDAP_CONST char *dn ));
723
724 LDAP_F( void )
725 ldap_uncache_request LDAP_P(( LDAP *ld, int msgid ));
726
727
728 /*
729  * in compare.c:
730  */
731 LDAP_F( int )
732 ldap_compare_ext LDAP_P((
733         LDAP                    *ld,
734         LDAP_CONST char *dn,
735         LDAP_CONST char *attr,
736         struct berval   *bvalue,
737         LDAPControl             **serverctrls,
738         LDAPControl             **clientctrls,
739         int                     *msgidp ));
740
741 LDAP_F( int )
742 ldap_compare_ext_s LDAP_P((
743         LDAP                    *ld,
744         LDAP_CONST char *dn,
745         LDAP_CONST char *attr,
746         struct berval   *bvalue,
747         LDAPControl             **serverctrls,
748         LDAPControl             **clientctrls ));
749
750 LDAP_F( int )
751 ldap_compare LDAP_P((
752         LDAP *ld,
753         LDAP_CONST char *dn,
754         LDAP_CONST char *attr,
755         LDAP_CONST char *value ));
756
757 LDAP_F( int )
758 ldap_compare_s LDAP_P((
759         LDAP *ld,
760         LDAP_CONST char *dn,
761         LDAP_CONST char *attr,
762         LDAP_CONST char *value ));
763
764
765 /*
766  * in delete.c:
767  */
768 LDAP_F( int )
769 ldap_delete_ext LDAP_P((
770         LDAP                    *ld,
771         LDAP_CONST char *dn,
772         LDAPControl             **serverctrls,
773         LDAPControl             **clientctrls,
774         int                     *msgidp ));
775
776 LDAP_F( int )
777 ldap_delete_ext_s LDAP_P((
778         LDAP                    *ld,
779         LDAP_CONST char *dn,
780         LDAPControl             **serverctrls,
781         LDAPControl             **clientctrls ));
782
783 LDAP_F( int )
784 ldap_delete LDAP_P((
785         LDAP *ld,
786         LDAP_CONST char *dn ));
787
788 LDAP_F( int )
789 ldap_delete_s LDAP_P((
790         LDAP *ld,
791         LDAP_CONST char *dn ));
792
793
794 /*
795  * in error.c:
796  */
797 LDAP_F( int )
798 ldap_parse_result LDAP_P((
799         LDAP                    *ld,
800         LDAPMessage             *res,
801         int                             *errcodep,
802         char                    **matcheddnp,
803         char                    **errmsgp,
804         char                    ***referralsp,
805         LDAPControl             ***serverctrls,
806         int                             freeit ));
807
808 LDAP_F( char *)
809 ldap_err2string LDAP_P((
810         int err ));
811
812 LDAP_F( int )
813 ldap_result2error LDAP_P((      /* deprecated */
814         LDAP *ld,
815         LDAPMessage *r,
816         int freeit ));
817
818 LDAP_F( void )
819 ldap_perror LDAP_P((    /* deprecated */
820         LDAP *ld,
821         LDAP_CONST char *s ));
822
823
824 /*
825  * in modify.c:
826  */
827 LDAP_F( int )
828 ldap_modify_ext LDAP_P((
829         LDAP                    *ld,
830         LDAP_CONST char *dn,
831         LDAPMod                 **mods,
832         LDAPControl             **serverctrls,
833         LDAPControl             **clientctrls,
834         int                     *msgidp ));
835
836 LDAP_F( int )
837 ldap_modify_ext_s LDAP_P((
838         LDAP                    *ld,
839         LDAP_CONST char *dn,
840         LDAPMod                 **mods,
841         LDAPControl             **serverctrls,
842         LDAPControl             **clientctrls ));
843
844 LDAP_F( int )
845 ldap_modify LDAP_P((
846         LDAP *ld,
847         LDAP_CONST char *dn,
848         LDAPMod **mods ));
849
850 LDAP_F( int )
851 ldap_modify_s LDAP_P((
852         LDAP *ld,
853         LDAP_CONST char *dn,
854         LDAPMod **mods ));
855
856
857 /*
858  * in modrdn.c:
859  */
860 LDAP_F( int )
861 ldap_rename_ext LDAP_P((
862         LDAP                    *ld,
863         LDAP_CONST char *dn,
864         LDAP_CONST char *newrdn,
865         LDAP_CONST char *newparent,
866         int                             deleteoldrdn,
867         LDAPControl             **serverctrls,
868         LDAPControl             **clientctrls,
869         int                     *msgidp ));
870
871 LDAP_F( int )
872 ldap_rename_ext_s LDAP_P((
873         LDAP                    *ld,
874         LDAP_CONST char *dn,
875         LDAP_CONST char *newrdn,
876         LDAP_CONST char *newparent,
877         int                             deleteoldrdn,
878         LDAPControl             **serverctrls,
879         LDAPControl             **clientctrls ));
880
881 LDAP_F( int )
882 ldap_rename2 LDAP_P((
883         LDAP *ld,
884         LDAP_CONST char *dn,
885         LDAP_CONST char *newrdn,
886         int deleteoldrdn,
887         LDAP_CONST char *newSuperior ));
888
889 LDAP_F( int )
890 ldap_rename2_s LDAP_P((
891         LDAP *ld,
892         LDAP_CONST char *dn,
893         LDAP_CONST char *newrdn,
894         int deleteoldrdn,
895         LDAP_CONST char *newSuperior));
896
897 LDAP_F( int )
898 ldap_modrdn LDAP_P((
899         LDAP *ld,
900         LDAP_CONST char *dn,
901         LDAP_CONST char *newrdn ));
902
903 LDAP_F( int )
904 ldap_modrdn_s LDAP_P((
905         LDAP *ld,
906         LDAP_CONST char *dn,
907         LDAP_CONST char *newrdn ));
908
909 LDAP_F( int )
910 ldap_modrdn2 LDAP_P((
911         LDAP *ld,
912         LDAP_CONST char *dn,
913         LDAP_CONST char *newrdn,
914         int deleteoldrdn ));
915
916 LDAP_F( int )
917 ldap_modrdn2_s LDAP_P((
918         LDAP *ld,
919         LDAP_CONST char *dn,
920         LDAP_CONST char *newrdn,
921         int deleteoldrdn));
922
923
924 /*
925  * in open.c:
926  */
927 LDAP_F( LDAP *)
928 ldap_open LDAP_P((
929         LDAP_CONST char *host,
930         int port ));
931
932 LDAP_F( LDAP *)
933 ldap_init LDAP_P((
934         LDAP_CONST char *host,
935         int port ));
936
937
938 /*
939  * in messages.c:
940  */
941 LDAP_F( LDAPMessage *)
942 ldap_first_message LDAP_P((
943         LDAP *ld,
944         LDAPMessage *chain ));
945
946 LDAP_F( LDAPMessage *)
947 ldap_next_message LDAP_P((
948         LDAP *ld,
949         LDAPMessage *msg ));
950
951 LDAP_F( int )
952 ldap_count_messages LDAP_P((
953         LDAP *ld,
954         LDAPMessage *chain ));
955
956
957 /*
958  * in references.c:
959  */
960 LDAP_F( LDAPMessage *)
961 ldap_first_reference LDAP_P((
962         LDAP *ld,
963         LDAPMessage *chain ));
964
965 LDAP_F( LDAPMessage *)
966 ldap_next_reference LDAP_P((
967         LDAP *ld,
968         LDAPMessage *ref ));
969
970 LDAP_F( int )
971 ldap_count_references LDAP_P((
972         LDAP *ld,
973         LDAPMessage *chain ));
974
975 LDAP_F( int )
976 ldap_parse_reference LDAP_P((
977         LDAP                    *ld,
978         LDAPMessage             *ref,
979         char                    ***referralsp,
980         LDAPControl             ***serverctrls,
981         int                             freeit));
982
983
984 /*
985  * in getentry.c:
986  */
987 LDAP_F( LDAPMessage *)
988 ldap_first_entry LDAP_P((
989         LDAP *ld,
990         LDAPMessage *chain ));
991
992 LDAP_F( LDAPMessage *)
993 ldap_next_entry LDAP_P((
994         LDAP *ld,
995         LDAPMessage *entry ));
996
997 LDAP_F( int )
998 ldap_count_entries LDAP_P((
999         LDAP *ld,
1000         LDAPMessage *chain ));
1001
1002 LDAP_F( int )
1003 ldap_get_entry_controls LDAP_P((
1004         LDAP                    *ld,
1005         LDAPMessage             *entry,
1006         LDAPControl             ***serverctrls));
1007
1008
1009 /*
1010  * in addentry.c
1011  */
1012 LDAP_F( LDAPMessage *)
1013 ldap_delete_result_entry LDAP_P((
1014         LDAPMessage **list,
1015         LDAPMessage *e ));
1016
1017 LDAP_F( void )
1018 ldap_add_result_entry LDAP_P((
1019         LDAPMessage **list,
1020         LDAPMessage *e ));
1021
1022
1023 /*
1024  * in getdn.c
1025  */
1026 LDAP_F( char *)
1027 ldap_get_dn LDAP_P((
1028         LDAP *ld,
1029         LDAPMessage *entry ));
1030
1031 LDAP_F( char *)
1032 ldap_dn2ufn LDAP_P((
1033         LDAP_CONST char *dn ));
1034
1035 LDAP_F( char **)
1036 ldap_explode_dn LDAP_P((
1037         LDAP_CONST char *dn,
1038         int notypes ));
1039
1040 LDAP_F( char **)
1041 ldap_explode_rdn LDAP_P((
1042         LDAP_CONST char *rdn,
1043         int notypes ));
1044
1045 LDAP_F( char *)
1046 ldap_parent_dn LDAP_P(( /* new (from slapd) */
1047         LDAP_CONST char *dn ));
1048
1049 LDAP_F( char *)
1050 ldap_relative_dn LDAP_P((       /* new (from slapd) */
1051         LDAP_CONST char *dn ));
1052
1053 LDAP_F( char *)
1054 ldap_normalize_dn LDAP_P((      /* new (from slapd) */
1055         LDAP_CONST char *dn ));
1056
1057 LDAP_F( char **)
1058 ldap_explode_dns LDAP_P(( /* deprecated */
1059         LDAP_CONST char *dn ));
1060
1061 LDAP_F( int )
1062 ldap_is_dns_dn LDAP_P(( /* deprecated */
1063         LDAP_CONST char *dn ));
1064
1065
1066 /*
1067  * in getattr.c
1068  */
1069 LDAP_F( char *)
1070 ldap_first_attribute LDAP_P((                                                                    
1071         LDAP *ld,
1072         LDAPMessage *entry,
1073         BerElement **ber ));
1074
1075 LDAP_F( char *)
1076 ldap_next_attribute LDAP_P((
1077         LDAP *ld,
1078         LDAPMessage *entry,
1079         BerElement *ber ));
1080
1081
1082 /*
1083  * in getvalues.c
1084  */
1085 LDAP_F( char **)
1086 ldap_get_values LDAP_P((
1087         LDAP *ld,
1088         LDAPMessage *entry,
1089         LDAP_CONST char *target ));
1090
1091 LDAP_F( struct berval **)
1092 ldap_get_values_len LDAP_P((
1093         LDAP *ld,
1094         LDAPMessage *entry,
1095         LDAP_CONST char *target ));
1096
1097 LDAP_F( int )
1098 ldap_count_values LDAP_P((
1099         char **vals ));
1100
1101 LDAP_F( int )
1102 ldap_count_values_len LDAP_P((
1103         struct berval **vals ));
1104
1105 LDAP_F( void )
1106 ldap_value_free LDAP_P((
1107         char **vals ));
1108
1109 LDAP_F( void )
1110 ldap_value_free_len LDAP_P((
1111         struct berval **vals ));
1112
1113 /*
1114  * in result.c:
1115  */
1116 LDAP_F( int )
1117 ldap_result LDAP_P((
1118         LDAP *ld,
1119         int msgid,
1120         int all,
1121         struct timeval *timeout,
1122         LDAPMessage **result ));
1123
1124 LDAP_F( int )
1125 ldap_msgtype LDAP_P((
1126         LDAPMessage *lm ));
1127
1128 LDAP_F( int )
1129 ldap_msgid   LDAP_P((
1130         LDAPMessage *lm ));
1131
1132 LDAP_F( int )
1133 ldap_msgfree LDAP_P((
1134         LDAPMessage *lm ));
1135
1136 LDAP_F( int )
1137 ldap_msgdelete LDAP_P((
1138         LDAP *ld,
1139         int msgid ));
1140
1141
1142 /*
1143  * in search.c:
1144  */
1145 LDAP_F( int )
1146 ldap_search_ext LDAP_P((
1147         LDAP                    *ld,
1148         LDAP_CONST char *base,
1149         int                             scope,
1150         LDAP_CONST char *filter,
1151         char                    **attrs,
1152         int                             attrsonly,
1153         LDAPControl             **serverctrls,
1154         LDAPControl             **clientctrls,
1155         struct timeval  *timeout,
1156         int                             sizelimit,
1157         int                             *msgidp ));
1158
1159 LDAP_F( int )
1160 ldap_search_ext_s LDAP_P((
1161         LDAP                    *ld,
1162         LDAP_CONST char *base,
1163         int                             scope,
1164         LDAP_CONST char *filter,
1165         char                    **attrs,
1166         int                             attrsonly,
1167         LDAPControl             **serverctrls,
1168         LDAPControl             **clientctrls,
1169         struct timeval  *timeout,
1170         int                             sizelimit,
1171         LDAPMessage             **res ));
1172
1173 LDAP_F( int )
1174 ldap_search LDAP_P((
1175         LDAP *ld,
1176         LDAP_CONST char *base,
1177         int scope,
1178         LDAP_CONST char *filter,
1179         char **attrs,
1180         int attrsonly ));
1181
1182 LDAP_F( int )
1183 ldap_search_s LDAP_P((
1184         LDAP *ld,
1185         LDAP_CONST char *base,
1186         int scope,
1187         LDAP_CONST char *filter,
1188         char **attrs,
1189         int attrsonly,
1190         LDAPMessage **res ));
1191
1192 LDAP_F( int )
1193 ldap_search_st LDAP_P((                                                  
1194         LDAP *ld,
1195         LDAP_CONST char *base,
1196         int scope,
1197         LDAP_CONST char *filter,
1198     char **attrs,
1199         int attrsonly,
1200         struct timeval *timeout,
1201         LDAPMessage **res ));
1202
1203
1204 /*
1205  * in ufn.c
1206  */
1207 LDAP_F( int )
1208 ldap_ufn_search_c LDAP_P((
1209         LDAP *ld,
1210         LDAP_CONST char *ufn,
1211         char **attrs,
1212         int attrsonly,
1213         LDAPMessage **res,
1214         int (*cancelproc)( void *cl ),
1215         void *cancelparm ));
1216
1217 LDAP_F( int )
1218 ldap_ufn_search_ct LDAP_P((
1219         LDAP *ld,
1220         LDAP_CONST char *ufn,
1221         char **attrs,
1222         int attrsonly,
1223         LDAPMessage **res,
1224         int (*cancelproc)( void *cl ),
1225         void *cancelparm,
1226         char *tag1,
1227         char *tag2,
1228         char *tag3 ));
1229
1230 LDAP_F( int )
1231 ldap_ufn_search_s LDAP_P((
1232         LDAP *ld,
1233         LDAP_CONST char *ufn,
1234         char **attrs,
1235         int attrsonly,
1236         LDAPMessage **res ));
1237
1238 LDAP_F( LDAPFiltDesc *)
1239 ldap_ufn_setfilter LDAP_P((
1240         LDAP *ld,
1241         LDAP_CONST char *fname ));
1242
1243 LDAP_F( void )
1244 ldap_ufn_setprefix LDAP_P((
1245         LDAP *ld,
1246         LDAP_CONST char *prefix ));
1247
1248 LDAP_F( int )
1249 ldap_ufn_timeout LDAP_P((
1250         void *tvparam ));
1251
1252
1253 /*
1254  * in unbind.c
1255  */
1256 LDAP_F( int )
1257 ldap_unbind LDAP_P((
1258         LDAP *ld ));
1259
1260 LDAP_F( int )
1261 ldap_unbind_s LDAP_P((
1262         LDAP *ld ));
1263
1264 LDAP_F( int )
1265 ldap_unbind_ext LDAP_P((
1266         LDAP                    *ld,
1267         LDAPControl             **serverctrls,
1268         LDAPControl             **clientctrls));
1269
1270 LDAP_F( int )
1271 ldap_unbind_ext_s LDAP_P((
1272         LDAP                    *ld,
1273         LDAPControl             **serverctrls,
1274         LDAPControl             **clientctrls));
1275
1276 /*
1277  * in getfilter.c
1278  */
1279 LDAP_F( LDAPFiltDesc *)
1280 ldap_init_getfilter LDAP_P((
1281         LDAP_CONST char *fname ));
1282
1283 LDAP_F( LDAPFiltDesc *)
1284 ldap_init_getfilter_buf LDAP_P((
1285         /* LDAP_CONST */ char *buf,
1286         ber_len_t buflen ));
1287
1288 LDAP_F( LDAPFiltInfo *)
1289 ldap_getfirstfilter LDAP_P((
1290         LDAPFiltDesc *lfdp,
1291         /* LDAP_CONST */ char *tagpat,
1292         /* LDAP_CONST */ char *value ));
1293
1294 LDAP_F( LDAPFiltInfo *)
1295 ldap_getnextfilter LDAP_P((
1296         LDAPFiltDesc *lfdp ));
1297
1298 LDAP_F( void )
1299 ldap_setfilteraffixes LDAP_P((
1300         LDAPFiltDesc *lfdp,
1301         LDAP_CONST char *prefix,
1302         LDAP_CONST char *suffix ));
1303
1304 LDAP_F( void )
1305 ldap_build_filter LDAP_P((
1306         char *buf,
1307         ber_len_t buflen,
1308         LDAP_CONST char *pattern,
1309         LDAP_CONST char *prefix,
1310         LDAP_CONST char *suffix,
1311         LDAP_CONST char *attr,
1312         LDAP_CONST char *value,
1313         char **valwords ));
1314
1315
1316 /*
1317  * in free.c
1318  */
1319
1320 LDAP_F( void * )
1321 ldap_memalloc LDAP_P((
1322         ber_len_t s ));
1323
1324 LDAP_F( void * )
1325 ldap_memrealloc LDAP_P((
1326         void* p,
1327         ber_len_t s ));
1328
1329 LDAP_F( void * )
1330 ldap_memcalloc LDAP_P((
1331         ber_len_t n,
1332         ber_len_t s ));
1333
1334 LDAP_F( void )
1335 ldap_memfree LDAP_P((
1336         void* p ));
1337
1338 LDAP_F( void )
1339 ldap_memvfree LDAP_P((
1340         void** v ));
1341
1342 LDAP_F( char * )
1343 ldap_strdup LDAP_P((
1344         LDAP_CONST char * ));
1345
1346 LDAP_F( void )
1347 ldap_getfilter_free LDAP_P((
1348         LDAPFiltDesc *lfdp ));
1349
1350 LDAP_F( void )
1351 ldap_mods_free LDAP_P((
1352         LDAPMod **mods,
1353         int freemods ));
1354
1355
1356 /*
1357  * in friendly.c
1358  */
1359 LDAP_F( char * )
1360 ldap_friendly_name LDAP_P((
1361         LDAP_CONST char *filename,
1362         /* LDAP_CONST */ char *uname,
1363         LDAPFriendlyMap **map ));
1364
1365 LDAP_F( void )
1366 ldap_free_friendlymap LDAP_P((
1367         LDAPFriendlyMap **map ));
1368
1369
1370 /*
1371  * in cldap.c
1372  */
1373 LDAP_F( LDAP * )
1374 cldap_open LDAP_P((
1375         LDAP_CONST char *host,
1376         int port ));
1377
1378 LDAP_F( void )
1379 cldap_close LDAP_P((
1380         LDAP *ld ));
1381
1382 LDAP_F( int )
1383 cldap_search_s LDAP_P(( LDAP *ld,
1384         LDAP_CONST char *base,
1385         int scope,
1386         LDAP_CONST char *filter,
1387         char **attrs,
1388         int attrsonly,
1389         LDAPMessage **res,
1390         char *logdn ));
1391
1392 LDAP_F( void )
1393 cldap_setretryinfo LDAP_P((
1394         LDAP *ld,
1395         int tries,
1396         int timeout ));
1397
1398
1399 /*
1400  * in sort.c
1401  */
1402 LDAP_F( int )
1403 ldap_sort_entries LDAP_P(( LDAP *ld,
1404         LDAPMessage **chain,
1405         LDAP_CONST char *attr,
1406         int (*cmp) (LDAP_CONST char *, LDAP_CONST char *) ));
1407
1408 LDAP_F( int )
1409 ldap_sort_values LDAP_P((
1410         LDAP *ld,
1411         char **vals,
1412         int (*cmp) (LDAP_CONST void *, LDAP_CONST void *) ));
1413
1414 LDAP_F( int )
1415 ldap_sort_strcasecmp LDAP_P((
1416         LDAP_CONST void *a,
1417         LDAP_CONST void *b ));
1418
1419
1420 /*
1421  * in url.c
1422  *
1423  * need _ext varients
1424  */
1425 LDAP_F( int )
1426 ldap_is_ldap_url LDAP_P((
1427         LDAP_CONST char *url ));
1428
1429 LDAP_F( int )
1430 ldap_url_parse LDAP_P((
1431         LDAP_CONST char *url,
1432         LDAPURLDesc **ludpp ));
1433
1434 LDAP_F( void )
1435 ldap_free_urldesc LDAP_P((
1436         LDAPURLDesc *ludp ));
1437
1438 LDAP_F( int )
1439 ldap_url_search LDAP_P((
1440         LDAP *ld,
1441         LDAP_CONST char *url,
1442         int attrsonly ));
1443
1444 LDAP_F( int )
1445 ldap_url_search_s LDAP_P((
1446         LDAP *ld,
1447         LDAP_CONST char *url,
1448         int attrsonly,
1449         LDAPMessage **res ));
1450
1451 LDAP_F( int )
1452 ldap_url_search_st LDAP_P((
1453         LDAP *ld,
1454         LDAP_CONST char *url,
1455         int attrsonly,
1456         struct timeval *timeout,
1457         LDAPMessage **res ));
1458
1459
1460 /*
1461  * in charset.c
1462  *      DEPRECATED
1463  */
1464 LDAP_F( void )
1465 ldap_set_string_translators LDAP_P((
1466         LDAP *ld,
1467         BERTranslateProc encode_proc,
1468         BERTranslateProc decode_proc ));
1469
1470 LDAP_F( int )
1471 ldap_translate_from_t61 LDAP_P((
1472         LDAP *ld,
1473         char **bufp,
1474         ber_len_t *lenp,
1475         int free_input ));
1476
1477 LDAP_F( int )
1478 ldap_translate_to_t61 LDAP_P((
1479         LDAP *ld,
1480         char **bufp,
1481         ber_len_t *lenp,
1482         int free_input ));
1483
1484 LDAP_F( void )
1485 ldap_enable_translation LDAP_P((
1486         LDAP *ld,
1487         LDAPMessage *entry,
1488         int enable ));
1489
1490 LDAP_F( int )
1491 ldap_t61_to_8859 LDAP_P((
1492         char **bufp,
1493         ber_len_t *buflenp,
1494         int free_input ));
1495
1496 LDAP_F( int )
1497 ldap_8859_to_t61 LDAP_P((
1498         char **bufp,
1499         ber_len_t *buflenp,
1500         int free_input ));
1501
1502 LDAP_END_DECL
1503
1504 #endif /* _LDAP_H */