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