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