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