]> git.sur5r.net Git - openldap/blob - include/ldap.h
Implement RFC2255 URL format.
[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             /* ldap:///             default LDAP port */
70 #define LDAPS_PORT              636             /* ldaps:///    default LDAP over TLS port */
71
72 #define LDAP_ROOT_DSE                           ""
73 #define LDAP_NO_ATTRS                           "1.1"
74 #define LDAP_ALL_USER_ATTRIBUTES        "*"
75
76 /*
77  * LDAP_OPTions defined by draft-ldapext-ldap-c-api-02
78  * 0x0000 - 0x0fff reserved for api options
79  * 0x1000 - 0x3fff reserved for api extended options
80  * 0x4000 - 0x7fff reserved for private and experimental options
81  */
82 #define LDAP_OPT_API_INFO                       0x0000
83 #define LDAP_OPT_DESC                           0x0001
84 #define LDAP_OPT_DEREF                          0x0002
85 #define LDAP_OPT_SIZELIMIT                      0x0003
86 #define LDAP_OPT_TIMELIMIT                      0x0004
87 /* 0x05 - 0x07 not defined by current draft */
88 #define LDAP_OPT_REFERRALS                      0x0008
89 #define LDAP_OPT_RESTART                        0x0009
90 /* 0x0a - 0x10 not defined by current draft */
91 #define LDAP_OPT_PROTOCOL_VERSION       0x0011
92 #define LDAP_OPT_SERVER_CONTROLS        0x0012
93 #define LDAP_OPT_CLIENT_CONTROLS        0x0013
94 /* 0x14 not defined by current draft */
95 #define LDAP_OPT_API_FEATURE_INFO       0x0015
96
97 /* 0x16 - 0x2f not defined by current draft */
98 #define LDAP_OPT_HOST_NAME                      0x0030
99 #define LDAP_OPT_ERROR_NUMBER           0x0031
100 #define LDAP_OPT_ERROR_STRING           0x0032
101
102 /* 0x33 - 0x0fff not defined by current draft */
103
104 /* extended options - none */
105
106 /* private and experimental options */
107 #define LDAP_OPT_DNS                            0x4001  /* use DN & DNS */
108
109 /* OpenLDAP specific options */
110 #define LDAP_OPT_DEBUG_LEVEL            0x5001  /* debug level */
111 #define LDAP_OPT_TIMEOUT                        0x5002  /* default timeout */
112 #define LDAP_OPT_REFHOPLIMIT            0x5003  /* ref hop limit */
113 #define LDAP_OPT_MATCHED_DN                     0x5004  /* should have been in draft */
114
115 /* TLS options */
116 #define LDAP_OPT_X_TLS_CACERTFILE       0x6001
117 #define LDAP_OPT_X_TLS_CACERTDIR        0x6002
118 #define LDAP_OPT_X_TLS_CERT             0x6003
119 #define LDAP_OPT_X_TLS_CERTFILE         0x6004
120 #define LDAP_OPT_X_TLS_KEYFILE          0x6005
121 #define LDAP_OPT_X_TLS_REQUIRE_CERT     0x6006
122 #define LDAP_OPT_X_TLS                  0x6007
123 #define LDAP_OPT_X_TLS_PROTOCOL         0x6008
124 #define LDAP_OPT_X_TLS_CIPHER_SUITE     0x6009
125
126 #define LDAP_OPT_X_TLS_NEVER            0
127 #define LDAP_OPT_X_TLS_HARD             1
128 #define LDAP_OPT_X_TLS_DEMAND           2
129 #define LDAP_OPT_X_TLS_ALLOW            3
130 #define LDAP_OPT_X_TLS_TRY              4
131
132 /* on/off values */
133 #define LDAP_OPT_ON             ((void *) 1)
134 #define LDAP_OPT_OFF    ((void *) 0)
135
136 #define LDAP_OPT_SUCCESS        0
137 #define LDAP_OPT_ERROR          (-1)
138
139 #define LDAP_API_INFO_VERSION   (1)
140 typedef struct ldapapiinfo {
141         int             ldapai_info_version;            /* version of LDAPAPIInfo (1) */
142         int             ldapai_api_version;                     /* revision of API supported */
143         int             ldapai_protocol_version;        /* highest LDAP version supported */
144         char    **ldapai_extensions;            /* names of API extensions */
145         char    *ldapai_vendor_name;            /* name of supplier */
146         int             ldapai_vendor_version;          /* supplier-specific version * 100 */
147 } LDAPAPIInfo;
148
149 #define LDAP_FEATURE_INFO_VERSION (1) /* version of api feature structure */
150 typedef struct ldap_apifeature_info {
151         int             ldapaif_info_version; /* version of this struct (1) */
152         char*   ldapaif_name;    /* matches LDAP_API_FEATURE_... less the prefix */
153         int             ldapaif_version; /* matches the value LDAP_API_FEATURE_... */
154 } LDAPAPIFeatureInfo;
155
156 typedef struct ldapcontrol {
157         char *                  ldctl_oid;
158         struct berval   ldctl_value;
159         char                    ldctl_iscritical;
160 } LDAPControl;
161
162 /* LDAP Controls */
163         /* chase referrals controls */
164 #define LDAP_CONTROL_REFERRALS  "1.2.840.113666.1.4.616"
165 #define LDAP_CHASE_SUBORDINATE_REFERRALS        0x0020
166 #define LDAP_CHASE_EXTERNAL_REFERRALS   0x0040
167
168 #define LDAP_CONTROL_MANAGEDSAIT "2.16.16.840.1.113730.3.4.2"
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         int             lud_ldaps;
472     char        *lud_host;
473     int         lud_port;
474     char        *lud_dn;
475     char        **lud_attrs;
476     int         lud_scope;
477     char        *lud_filter;
478         char    **lud_exts;
479 } LDAPURLDesc;
480
481 #define LDAP_URL_SUCCESS                0x00    /* Success */
482 #define LDAP_URL_ERR_MEM                0x01    /* can't allocate memory space */
483 #define LDAP_URL_ERR_PARAM              0x02    /* parameter is bad */
484
485 #define LDAP_URL_ERR_NOTLDAP    0x03    /* URL doesn't begin with "ldap[s]://" */
486 #define LDAP_URL_ERR_BADENCLOSURE 0x04  /* URL is missing trailing ">" */
487 #define LDAP_URL_ERR_BADURL             0x05    /* URL is bad */
488 #define LDAP_URL_ERR_BADHOST    0x06    /* host port is bad */
489 #define LDAP_URL_ERR_BADATTRS   0x07    /* bad (or missing) attributes */
490 #define LDAP_URL_ERR_BADSCOPE   0x08    /* scope string is invalid (or missing) */
491 #define LDAP_URL_ERR_BADFILTER  0x09    /* bad or missing filter */
492 #define LDAP_URL_ERR_BADEXTS    0x0a    /* bad or missing extensions */
493
494 /*
495  * The API draft spec says we should declare (or cause to be declared)
496  * 'struct timeval'.   We don't.  See LDAPext discussions.
497  */
498 struct timeval;
499
500 /*
501  * in options.c:
502  */
503 LDAP_F( int )
504 ldap_get_option LDAP_P((
505         LDAP_CONST LDAP *ld,
506         int option,
507         void *outvalue));
508
509 LDAP_F( int )
510 ldap_set_option LDAP_P((
511         LDAP *ld,
512         int option,
513         LDAP_CONST void *invalue));
514
515
516 /*
517  * in controls.c:
518  */
519 LDAP_F( void )
520 ldap_control_free LDAP_P((
521         LDAPControl *ctrl ));
522
523 LDAP_F( void )
524 ldap_controls_free LDAP_P((
525         LDAPControl **ctrls ));
526
527   
528 /*
529  * in extended.c:
530  */
531 LDAP_F( int )
532 ldap_extended_operation LDAP_P((
533         LDAP                    *ld,
534         LDAP_CONST char *reqoid,
535         struct berval   *reqdata,
536         LDAPControl             **serverctrls,
537         LDAPControl             **clientctrls,
538         int                             *msgidp ));
539
540 LDAP_F( int )
541 ldap_extended_operation_s LDAP_P((
542         LDAP                    *ld,
543         LDAP_CONST char *reqoid,
544         struct berval   *reqdata,
545         LDAPControl             **serverctrls,
546         LDAPControl             **clientctrls,
547         char                    **retoidp,
548         struct berval   **retdatap ));
549
550 LDAP_F( int )
551 ldap_parse_extended_result LDAP_P((
552         LDAP                    *ld,
553         LDAPMessage             *res,
554         char                    **retoidp,
555         struct berval   **retdatap,
556         int                             freeit ));
557
558 /*
559  * in abandon.c:
560  */
561 LDAP_F( int )
562 ldap_abandon LDAP_P((
563         LDAP *ld,
564         int msgid ));
565
566 LDAP_F( int )
567 ldap_abandon_ext LDAP_P((
568         LDAP                    *ld,
569         int                             msgid,
570         LDAPControl             **serverctrls,
571         LDAPControl             **clientctrls ));
572
573
574 /*
575  * in add.c:
576  */
577 LDAP_F( int )
578 ldap_add_ext LDAP_P((
579         LDAP                    *ld,
580         LDAP_CONST char *dn,
581         LDAPMod                 **attrs,
582         LDAPControl             **serverctrls,
583         LDAPControl             **clientctrls,
584         int                     *msgidp ));
585
586 LDAP_F( int )
587 ldap_add_ext_s LDAP_P((
588         LDAP                    *ld,
589         LDAP_CONST char *dn,
590         LDAPMod                 **attrs,
591         LDAPControl             **serverctrls,
592         LDAPControl             **clientctrls ));
593
594 LDAP_F( int )
595 ldap_add LDAP_P((
596         LDAP *ld,
597         LDAP_CONST char *dn,
598         LDAPMod **attrs ));
599
600 LDAP_F( int )
601 ldap_add_s LDAP_P((
602         LDAP *ld,
603         LDAP_CONST char *dn,
604         LDAPMod **attrs ));
605
606
607 /*
608  * in sasl.c:
609  */
610 LDAP_F( int )
611 ldap_sasl_bind LDAP_P((
612         LDAP                    *ld,
613         LDAP_CONST char *dn,
614         LDAP_CONST char *mechanism,
615         struct berval   *cred,
616         LDAPControl             **serverctrls,
617         LDAPControl             **clientctrls,
618         int                             *msgidp ));
619
620 LDAP_F( int )
621 ldap_sasl_bind_s LDAP_P((
622         LDAP                    *ld,
623         LDAP_CONST char *dn,
624         LDAP_CONST char *mechanism,
625         struct berval   *cred,
626         LDAPControl             **serverctrls,
627         LDAPControl             **clientctrls,
628         struct berval   **servercredp ));
629
630 LDAP_F( int )
631 ldap_parse_sasl_bind_result LDAP_P((
632         LDAP                    *ld,
633         LDAPMessage             *res,
634         struct berval   **servercredp,
635         int                             freeit ));
636
637 /*
638  * in bind.c:
639  *      (deprecated)
640  */
641 LDAP_F( int )
642 ldap_bind LDAP_P((
643         LDAP *ld,
644         LDAP_CONST char *who,
645         LDAP_CONST char *passwd,
646         int authmethod ));
647
648 LDAP_F( int )
649 ldap_bind_s LDAP_P((
650         LDAP *ld,
651         LDAP_CONST char *who,
652         LDAP_CONST char *cred,
653         int authmethod ));
654
655 LDAP_F( void )
656 ldap_set_rebind_proc LDAP_P((
657         LDAP *ld,
658         int (*rebindproc) LDAP_P((
659                 LDAP *ld,
660                 char **dnp,
661                 char **passwdp,
662                 int *authmethodp,
663                 int freeit ))));
664
665
666 /*
667  * in sbind.c:
668  */
669 LDAP_F( int )
670 ldap_simple_bind LDAP_P((
671         LDAP *ld,
672         LDAP_CONST char *who,
673         LDAP_CONST char *passwd ));
674
675 LDAP_F( int )
676 ldap_simple_bind_s LDAP_P((
677         LDAP *ld,
678         LDAP_CONST char *who,
679         LDAP_CONST char *passwd ));
680
681
682 /*
683  * in kbind.c:
684  *      (deprecated)
685  */
686 LDAP_F( int )
687 ldap_kerberos_bind_s LDAP_P((
688         LDAP *ld,
689         LDAP_CONST char *who ));
690
691 LDAP_F( int )
692 ldap_kerberos_bind1 LDAP_P((
693         LDAP *ld,
694         LDAP_CONST char *who ));
695
696 LDAP_F( int )
697 ldap_kerberos_bind1_s LDAP_P((
698         LDAP *ld,
699         LDAP_CONST char *who ));
700
701 LDAP_F( int )
702 ldap_kerberos_bind2 LDAP_P((
703         LDAP *ld,
704         LDAP_CONST char *who ));
705
706 LDAP_F( int )
707 ldap_kerberos_bind2_s LDAP_P((
708         LDAP *ld,
709         LDAP_CONST char *who ));
710
711 /*
712  * in cache.c
713  * (deprecated)
714  */
715 LDAP_F( int )
716 ldap_enable_cache LDAP_P(( LDAP *ld, long timeout, ber_len_t maxmem ));
717
718 LDAP_F( void )
719 ldap_disable_cache LDAP_P(( LDAP *ld ));
720
721 LDAP_F( void )
722 ldap_set_cache_options LDAP_P(( LDAP *ld, unsigned long opts ));
723
724 LDAP_F( void )
725 ldap_destroy_cache LDAP_P(( LDAP *ld ));
726
727 LDAP_F( void )
728 ldap_flush_cache LDAP_P(( LDAP *ld ));
729
730 LDAP_F( void )
731 ldap_uncache_entry LDAP_P(( LDAP *ld, LDAP_CONST char *dn ));
732
733 LDAP_F( void )
734 ldap_uncache_request LDAP_P(( LDAP *ld, int msgid ));
735
736
737 /*
738  * in compare.c:
739  */
740 LDAP_F( int )
741 ldap_compare_ext LDAP_P((
742         LDAP                    *ld,
743         LDAP_CONST char *dn,
744         LDAP_CONST char *attr,
745         struct berval   *bvalue,
746         LDAPControl             **serverctrls,
747         LDAPControl             **clientctrls,
748         int                     *msgidp ));
749
750 LDAP_F( int )
751 ldap_compare_ext_s LDAP_P((
752         LDAP                    *ld,
753         LDAP_CONST char *dn,
754         LDAP_CONST char *attr,
755         struct berval   *bvalue,
756         LDAPControl             **serverctrls,
757         LDAPControl             **clientctrls ));
758
759 LDAP_F( int )
760 ldap_compare LDAP_P((
761         LDAP *ld,
762         LDAP_CONST char *dn,
763         LDAP_CONST char *attr,
764         LDAP_CONST char *value ));
765
766 LDAP_F( int )
767 ldap_compare_s LDAP_P((
768         LDAP *ld,
769         LDAP_CONST char *dn,
770         LDAP_CONST char *attr,
771         LDAP_CONST char *value ));
772
773
774 /*
775  * in delete.c:
776  */
777 LDAP_F( int )
778 ldap_delete_ext LDAP_P((
779         LDAP                    *ld,
780         LDAP_CONST char *dn,
781         LDAPControl             **serverctrls,
782         LDAPControl             **clientctrls,
783         int                     *msgidp ));
784
785 LDAP_F( int )
786 ldap_delete_ext_s LDAP_P((
787         LDAP                    *ld,
788         LDAP_CONST char *dn,
789         LDAPControl             **serverctrls,
790         LDAPControl             **clientctrls ));
791
792 LDAP_F( int )
793 ldap_delete LDAP_P((
794         LDAP *ld,
795         LDAP_CONST char *dn ));
796
797 LDAP_F( int )
798 ldap_delete_s LDAP_P((
799         LDAP *ld,
800         LDAP_CONST char *dn ));
801
802
803 /*
804  * in error.c:
805  */
806 LDAP_F( int )
807 ldap_parse_result LDAP_P((
808         LDAP                    *ld,
809         LDAPMessage             *res,
810         int                             *errcodep,
811         char                    **matcheddnp,
812         char                    **errmsgp,
813         char                    ***referralsp,
814         LDAPControl             ***serverctrls,
815         int                             freeit ));
816
817 LDAP_F( char *)
818 ldap_err2string LDAP_P((
819         int err ));
820
821 LDAP_F( int )
822 ldap_result2error LDAP_P((      /* deprecated */
823         LDAP *ld,
824         LDAPMessage *r,
825         int freeit ));
826
827 LDAP_F( void )
828 ldap_perror LDAP_P((    /* deprecated */
829         LDAP *ld,
830         LDAP_CONST char *s ));
831
832
833 /*
834  * in modify.c:
835  */
836 LDAP_F( int )
837 ldap_modify_ext LDAP_P((
838         LDAP                    *ld,
839         LDAP_CONST char *dn,
840         LDAPMod                 **mods,
841         LDAPControl             **serverctrls,
842         LDAPControl             **clientctrls,
843         int                     *msgidp ));
844
845 LDAP_F( int )
846 ldap_modify_ext_s LDAP_P((
847         LDAP                    *ld,
848         LDAP_CONST char *dn,
849         LDAPMod                 **mods,
850         LDAPControl             **serverctrls,
851         LDAPControl             **clientctrls ));
852
853 LDAP_F( int )
854 ldap_modify LDAP_P((
855         LDAP *ld,
856         LDAP_CONST char *dn,
857         LDAPMod **mods ));
858
859 LDAP_F( int )
860 ldap_modify_s LDAP_P((
861         LDAP *ld,
862         LDAP_CONST char *dn,
863         LDAPMod **mods ));
864
865
866 /*
867  * in modrdn.c:
868  */
869 LDAP_F( int )
870 ldap_rename_ext LDAP_P((
871         LDAP                    *ld,
872         LDAP_CONST char *dn,
873         LDAP_CONST char *newrdn,
874         LDAP_CONST char *newparent,
875         int                             deleteoldrdn,
876         LDAPControl             **serverctrls,
877         LDAPControl             **clientctrls,
878         int                     *msgidp ));
879
880 LDAP_F( int )
881 ldap_rename_ext_s LDAP_P((
882         LDAP                    *ld,
883         LDAP_CONST char *dn,
884         LDAP_CONST char *newrdn,
885         LDAP_CONST char *newparent,
886         int                             deleteoldrdn,
887         LDAPControl             **serverctrls,
888         LDAPControl             **clientctrls ));
889
890 LDAP_F( int )
891 ldap_rename2 LDAP_P((
892         LDAP *ld,
893         LDAP_CONST char *dn,
894         LDAP_CONST char *newrdn,
895         int deleteoldrdn,
896         LDAP_CONST char *newSuperior ));
897
898 LDAP_F( int )
899 ldap_rename2_s LDAP_P((
900         LDAP *ld,
901         LDAP_CONST char *dn,
902         LDAP_CONST char *newrdn,
903         int deleteoldrdn,
904         LDAP_CONST char *newSuperior));
905
906 LDAP_F( int )
907 ldap_modrdn LDAP_P((
908         LDAP *ld,
909         LDAP_CONST char *dn,
910         LDAP_CONST char *newrdn ));
911
912 LDAP_F( int )
913 ldap_modrdn_s LDAP_P((
914         LDAP *ld,
915         LDAP_CONST char *dn,
916         LDAP_CONST char *newrdn ));
917
918 LDAP_F( int )
919 ldap_modrdn2 LDAP_P((
920         LDAP *ld,
921         LDAP_CONST char *dn,
922         LDAP_CONST char *newrdn,
923         int deleteoldrdn ));
924
925 LDAP_F( int )
926 ldap_modrdn2_s LDAP_P((
927         LDAP *ld,
928         LDAP_CONST char *dn,
929         LDAP_CONST char *newrdn,
930         int deleteoldrdn));
931
932
933 /*
934  * in open.c:
935  */
936 LDAP_F( LDAP *)
937 ldap_open LDAP_P((
938         LDAP_CONST char *host,
939         int port ));
940
941 LDAP_F( LDAP *)
942 ldap_init LDAP_P((
943         LDAP_CONST char *host,
944         int port ));
945
946
947 /*
948  * in messages.c:
949  */
950 LDAP_F( LDAPMessage *)
951 ldap_first_message LDAP_P((
952         LDAP *ld,
953         LDAPMessage *chain ));
954
955 LDAP_F( LDAPMessage *)
956 ldap_next_message LDAP_P((
957         LDAP *ld,
958         LDAPMessage *msg ));
959
960 LDAP_F( int )
961 ldap_count_messages LDAP_P((
962         LDAP *ld,
963         LDAPMessage *chain ));
964
965
966 /*
967  * in references.c:
968  */
969 LDAP_F( LDAPMessage *)
970 ldap_first_reference LDAP_P((
971         LDAP *ld,
972         LDAPMessage *chain ));
973
974 LDAP_F( LDAPMessage *)
975 ldap_next_reference LDAP_P((
976         LDAP *ld,
977         LDAPMessage *ref ));
978
979 LDAP_F( int )
980 ldap_count_references LDAP_P((
981         LDAP *ld,
982         LDAPMessage *chain ));
983
984 LDAP_F( int )
985 ldap_parse_reference LDAP_P((
986         LDAP                    *ld,
987         LDAPMessage             *ref,
988         char                    ***referralsp,
989         LDAPControl             ***serverctrls,
990         int                             freeit));
991
992
993 /*
994  * in getentry.c:
995  */
996 LDAP_F( LDAPMessage *)
997 ldap_first_entry LDAP_P((
998         LDAP *ld,
999         LDAPMessage *chain ));
1000
1001 LDAP_F( LDAPMessage *)
1002 ldap_next_entry LDAP_P((
1003         LDAP *ld,
1004         LDAPMessage *entry ));
1005
1006 LDAP_F( int )
1007 ldap_count_entries LDAP_P((
1008         LDAP *ld,
1009         LDAPMessage *chain ));
1010
1011 LDAP_F( int )
1012 ldap_get_entry_controls LDAP_P((
1013         LDAP                    *ld,
1014         LDAPMessage             *entry,
1015         LDAPControl             ***serverctrls));
1016
1017
1018 /*
1019  * in addentry.c
1020  */
1021 LDAP_F( LDAPMessage *)
1022 ldap_delete_result_entry LDAP_P((
1023         LDAPMessage **list,
1024         LDAPMessage *e ));
1025
1026 LDAP_F( void )
1027 ldap_add_result_entry LDAP_P((
1028         LDAPMessage **list,
1029         LDAPMessage *e ));
1030
1031
1032 /*
1033  * in getdn.c
1034  */
1035 LDAP_F( char *)
1036 ldap_get_dn LDAP_P((
1037         LDAP *ld,
1038         LDAPMessage *entry ));
1039
1040 LDAP_F( char *)
1041 ldap_dn2ufn LDAP_P((
1042         LDAP_CONST char *dn ));
1043
1044 LDAP_F( char **)
1045 ldap_explode_dn LDAP_P((
1046         LDAP_CONST char *dn,
1047         int notypes ));
1048
1049 LDAP_F( char **)
1050 ldap_explode_rdn LDAP_P((
1051         LDAP_CONST char *rdn,
1052         int notypes ));
1053
1054 LDAP_F( char *)
1055 ldap_parent_dn LDAP_P(( /* new (from slapd) */
1056         LDAP_CONST char *dn ));
1057
1058 LDAP_F( char *)
1059 ldap_relative_dn LDAP_P((       /* new (from slapd) */
1060         LDAP_CONST char *dn ));
1061
1062 LDAP_F( char *)
1063 ldap_normalize_dn LDAP_P((      /* new (from slapd) */
1064         LDAP_CONST char *dn ));
1065
1066 LDAP_F( char **)
1067 ldap_explode_dns LDAP_P(( /* deprecated */
1068         LDAP_CONST char *dn ));
1069
1070 LDAP_F( int )
1071 ldap_is_dns_dn LDAP_P(( /* deprecated */
1072         LDAP_CONST char *dn ));
1073
1074
1075 /*
1076  * in getattr.c
1077  */
1078 LDAP_F( char *)
1079 ldap_first_attribute LDAP_P((                                                                    
1080         LDAP *ld,
1081         LDAPMessage *entry,
1082         BerElement **ber ));
1083
1084 LDAP_F( char *)
1085 ldap_next_attribute LDAP_P((
1086         LDAP *ld,
1087         LDAPMessage *entry,
1088         BerElement *ber ));
1089
1090
1091 /*
1092  * in getvalues.c
1093  */
1094 LDAP_F( char **)
1095 ldap_get_values LDAP_P((
1096         LDAP *ld,
1097         LDAPMessage *entry,
1098         LDAP_CONST char *target ));
1099
1100 LDAP_F( struct berval **)
1101 ldap_get_values_len LDAP_P((
1102         LDAP *ld,
1103         LDAPMessage *entry,
1104         LDAP_CONST char *target ));
1105
1106 LDAP_F( int )
1107 ldap_count_values LDAP_P((
1108         char **vals ));
1109
1110 LDAP_F( int )
1111 ldap_count_values_len LDAP_P((
1112         struct berval **vals ));
1113
1114 LDAP_F( void )
1115 ldap_value_free LDAP_P((
1116         char **vals ));
1117
1118 LDAP_F( void )
1119 ldap_value_free_len LDAP_P((
1120         struct berval **vals ));
1121
1122 /*
1123  * in result.c:
1124  */
1125 LDAP_F( int )
1126 ldap_result LDAP_P((
1127         LDAP *ld,
1128         int msgid,
1129         int all,
1130         struct timeval *timeout,
1131         LDAPMessage **result ));
1132
1133 LDAP_F( int )
1134 ldap_msgtype LDAP_P((
1135         LDAPMessage *lm ));
1136
1137 LDAP_F( int )
1138 ldap_msgid   LDAP_P((
1139         LDAPMessage *lm ));
1140
1141 LDAP_F( int )
1142 ldap_msgfree LDAP_P((
1143         LDAPMessage *lm ));
1144
1145 LDAP_F( int )
1146 ldap_msgdelete LDAP_P((
1147         LDAP *ld,
1148         int msgid ));
1149
1150
1151 /*
1152  * in search.c:
1153  */
1154 LDAP_F( int )
1155 ldap_search_ext LDAP_P((
1156         LDAP                    *ld,
1157         LDAP_CONST char *base,
1158         int                             scope,
1159         LDAP_CONST char *filter,
1160         char                    **attrs,
1161         int                             attrsonly,
1162         LDAPControl             **serverctrls,
1163         LDAPControl             **clientctrls,
1164         struct timeval  *timeout,
1165         int                             sizelimit,
1166         int                             *msgidp ));
1167
1168 LDAP_F( int )
1169 ldap_search_ext_s LDAP_P((
1170         LDAP                    *ld,
1171         LDAP_CONST char *base,
1172         int                             scope,
1173         LDAP_CONST char *filter,
1174         char                    **attrs,
1175         int                             attrsonly,
1176         LDAPControl             **serverctrls,
1177         LDAPControl             **clientctrls,
1178         struct timeval  *timeout,
1179         int                             sizelimit,
1180         LDAPMessage             **res ));
1181
1182 LDAP_F( int )
1183 ldap_search 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
1191 LDAP_F( int )
1192 ldap_search_s LDAP_P((
1193         LDAP *ld,
1194         LDAP_CONST char *base,
1195         int scope,
1196         LDAP_CONST char *filter,
1197         char **attrs,
1198         int attrsonly,
1199         LDAPMessage **res ));
1200
1201 LDAP_F( int )
1202 ldap_search_st LDAP_P((                                                  
1203         LDAP *ld,
1204         LDAP_CONST char *base,
1205         int scope,
1206         LDAP_CONST char *filter,
1207     char **attrs,
1208         int attrsonly,
1209         struct timeval *timeout,
1210         LDAPMessage **res ));
1211
1212
1213 /*
1214  * in ufn.c
1215  */
1216 LDAP_F( int )
1217 ldap_ufn_search_c LDAP_P((
1218         LDAP *ld,
1219         LDAP_CONST char *ufn,
1220         char **attrs,
1221         int attrsonly,
1222         LDAPMessage **res,
1223         int (*cancelproc)( void *cl ),
1224         void *cancelparm ));
1225
1226 LDAP_F( int )
1227 ldap_ufn_search_ct LDAP_P((
1228         LDAP *ld,
1229         LDAP_CONST char *ufn,
1230         char **attrs,
1231         int attrsonly,
1232         LDAPMessage **res,
1233         int (*cancelproc)( void *cl ),
1234         void *cancelparm,
1235         char *tag1,
1236         char *tag2,
1237         char *tag3 ));
1238
1239 LDAP_F( int )
1240 ldap_ufn_search_s LDAP_P((
1241         LDAP *ld,
1242         LDAP_CONST char *ufn,
1243         char **attrs,
1244         int attrsonly,
1245         LDAPMessage **res ));
1246
1247 LDAP_F( LDAPFiltDesc *)
1248 ldap_ufn_setfilter LDAP_P((
1249         LDAP *ld,
1250         LDAP_CONST char *fname ));
1251
1252 LDAP_F( void )
1253 ldap_ufn_setprefix LDAP_P((
1254         LDAP *ld,
1255         LDAP_CONST char *prefix ));
1256
1257 LDAP_F( int )
1258 ldap_ufn_timeout LDAP_P((
1259         void *tvparam ));
1260
1261
1262 /*
1263  * in unbind.c
1264  */
1265 LDAP_F( int )
1266 ldap_unbind LDAP_P((
1267         LDAP *ld ));
1268
1269 LDAP_F( int )
1270 ldap_unbind_s LDAP_P((
1271         LDAP *ld ));
1272
1273 LDAP_F( int )
1274 ldap_unbind_ext LDAP_P((
1275         LDAP                    *ld,
1276         LDAPControl             **serverctrls,
1277         LDAPControl             **clientctrls));
1278
1279 LDAP_F( int )
1280 ldap_unbind_ext_s LDAP_P((
1281         LDAP                    *ld,
1282         LDAPControl             **serverctrls,
1283         LDAPControl             **clientctrls));
1284
1285 /*
1286  * in getfilter.c
1287  */
1288 LDAP_F( LDAPFiltDesc *)
1289 ldap_init_getfilter LDAP_P((
1290         LDAP_CONST char *fname ));
1291
1292 LDAP_F( LDAPFiltDesc *)
1293 ldap_init_getfilter_buf LDAP_P((
1294         /* LDAP_CONST */ char *buf,
1295         ber_len_t buflen ));
1296
1297 LDAP_F( LDAPFiltInfo *)
1298 ldap_getfirstfilter LDAP_P((
1299         LDAPFiltDesc *lfdp,
1300         /* LDAP_CONST */ char *tagpat,
1301         /* LDAP_CONST */ char *value ));
1302
1303 LDAP_F( LDAPFiltInfo *)
1304 ldap_getnextfilter LDAP_P((
1305         LDAPFiltDesc *lfdp ));
1306
1307 LDAP_F( void )
1308 ldap_setfilteraffixes LDAP_P((
1309         LDAPFiltDesc *lfdp,
1310         LDAP_CONST char *prefix,
1311         LDAP_CONST char *suffix ));
1312
1313 LDAP_F( void )
1314 ldap_build_filter LDAP_P((
1315         char *buf,
1316         ber_len_t buflen,
1317         LDAP_CONST char *pattern,
1318         LDAP_CONST char *prefix,
1319         LDAP_CONST char *suffix,
1320         LDAP_CONST char *attr,
1321         LDAP_CONST char *value,
1322         char **valwords ));
1323
1324
1325 /*
1326  * in free.c
1327  */
1328
1329 LDAP_F( void * )
1330 ldap_memalloc LDAP_P((
1331         ber_len_t s ));
1332
1333 LDAP_F( void * )
1334 ldap_memrealloc LDAP_P((
1335         void* p,
1336         ber_len_t s ));
1337
1338 LDAP_F( void * )
1339 ldap_memcalloc LDAP_P((
1340         ber_len_t n,
1341         ber_len_t s ));
1342
1343 LDAP_F( void )
1344 ldap_memfree LDAP_P((
1345         void* p ));
1346
1347 LDAP_F( void )
1348 ldap_memvfree LDAP_P((
1349         void** v ));
1350
1351 LDAP_F( char * )
1352 ldap_strdup LDAP_P((
1353         LDAP_CONST char * ));
1354
1355 LDAP_F( void )
1356 ldap_getfilter_free LDAP_P((
1357         LDAPFiltDesc *lfdp ));
1358
1359 LDAP_F( void )
1360 ldap_mods_free LDAP_P((
1361         LDAPMod **mods,
1362         int freemods ));
1363
1364
1365 /*
1366  * in friendly.c
1367  */
1368 LDAP_F( char * )
1369 ldap_friendly_name LDAP_P((
1370         LDAP_CONST char *filename,
1371         /* LDAP_CONST */ char *uname,
1372         LDAPFriendlyMap **map ));
1373
1374 LDAP_F( void )
1375 ldap_free_friendlymap LDAP_P((
1376         LDAPFriendlyMap **map ));
1377
1378
1379 /*
1380  * in cldap.c
1381  */
1382 LDAP_F( LDAP * )
1383 cldap_open LDAP_P((
1384         LDAP_CONST char *host,
1385         int port ));
1386
1387 LDAP_F( void )
1388 cldap_close LDAP_P((
1389         LDAP *ld ));
1390
1391 LDAP_F( int )
1392 cldap_search_s LDAP_P(( LDAP *ld,
1393         LDAP_CONST char *base,
1394         int scope,
1395         LDAP_CONST char *filter,
1396         char **attrs,
1397         int attrsonly,
1398         LDAPMessage **res,
1399         char *logdn ));
1400
1401 LDAP_F( void )
1402 cldap_setretryinfo LDAP_P((
1403         LDAP *ld,
1404         int tries,
1405         int timeout ));
1406
1407
1408 /*
1409  * in sort.c
1410  */
1411 LDAP_F( int )
1412 ldap_sort_entries LDAP_P(( LDAP *ld,
1413         LDAPMessage **chain,
1414         LDAP_CONST char *attr,
1415         int (*cmp) (LDAP_CONST char *, LDAP_CONST char *) ));
1416
1417 LDAP_F( int )
1418 ldap_sort_values LDAP_P((
1419         LDAP *ld,
1420         char **vals,
1421         int (*cmp) (LDAP_CONST void *, LDAP_CONST void *) ));
1422
1423 LDAP_F( int )
1424 ldap_sort_strcasecmp LDAP_P((
1425         LDAP_CONST void *a,
1426         LDAP_CONST void *b ));
1427
1428
1429 /*
1430  * in url.c
1431  *
1432  * need _ext varients
1433  */
1434 LDAP_F( int )
1435 ldap_is_ldap_url LDAP_P((
1436         LDAP_CONST char *url ));
1437
1438 LDAP_F( int )
1439 ldap_is_ldaps_url LDAP_P((
1440         LDAP_CONST char *url ));
1441
1442 LDAP_F( int )
1443 ldap_url_parse LDAP_P((
1444         LDAP_CONST char *url,
1445         LDAPURLDesc **ludpp ));
1446
1447 LDAP_F( void )
1448 ldap_free_urldesc LDAP_P((
1449         LDAPURLDesc *ludp ));
1450
1451 LDAP_F( int )
1452 ldap_url_search LDAP_P((
1453         LDAP *ld,
1454         LDAP_CONST char *url,
1455         int attrsonly ));
1456
1457 LDAP_F( int )
1458 ldap_url_search_s LDAP_P((
1459         LDAP *ld,
1460         LDAP_CONST char *url,
1461         int attrsonly,
1462         LDAPMessage **res ));
1463
1464 LDAP_F( int )
1465 ldap_url_search_st LDAP_P((
1466         LDAP *ld,
1467         LDAP_CONST char *url,
1468         int attrsonly,
1469         struct timeval *timeout,
1470         LDAPMessage **res ));
1471
1472
1473 /*
1474  * in charset.c
1475  *      DEPRECATED
1476  */
1477 LDAP_F( void )
1478 ldap_set_string_translators LDAP_P((
1479         LDAP *ld,
1480         BERTranslateProc encode_proc,
1481         BERTranslateProc decode_proc ));
1482
1483 LDAP_F( int )
1484 ldap_translate_from_t61 LDAP_P((
1485         LDAP *ld,
1486         char **bufp,
1487         ber_len_t *lenp,
1488         int free_input ));
1489
1490 LDAP_F( int )
1491 ldap_translate_to_t61 LDAP_P((
1492         LDAP *ld,
1493         char **bufp,
1494         ber_len_t *lenp,
1495         int free_input ));
1496
1497 LDAP_F( void )
1498 ldap_enable_translation LDAP_P((
1499         LDAP *ld,
1500         LDAPMessage *entry,
1501         int enable ));
1502
1503 LDAP_F( int )
1504 ldap_t61_to_8859 LDAP_P((
1505         char **bufp,
1506         ber_len_t *buflenp,
1507         int free_input ));
1508
1509 LDAP_F( int )
1510 ldap_8859_to_t61 LDAP_P((
1511         char **bufp,
1512         ber_len_t *buflenp,
1513         int free_input ));
1514
1515 LDAP_END_DECL
1516
1517 #endif /* _LDAP_H */