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