]> git.sur5r.net Git - openldap/blob - include/ldap_features.h.in
Added LDAP_LOG messages
[openldap] / include / ldap_features.h.in
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2002 The OpenLDAP Foundation, Redwood City, California, USA
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted only as authorized by the OpenLDAP
8  * Public License.  A copy of this license is available at
9  * http://www.OpenLDAP.org/license.html or in file LICENSE in the
10  * top-level directory of the distribution.
11  */
12
13 /* 
14  * LDAP Features
15  */
16
17 #ifndef _LDAP_FEATURES_H
18 #define _LDAP_FEATURES_H 1
19
20 /* OpenLDAP API version macros */
21 #undef LDAP_VENDOR_VERSION
22 #undef LDAP_VENDOR_VERSION_MAJOR
23 #undef LDAP_VENDOR_VERSION_MINOR
24 #undef LDAP_VENDOR_VERSION_PATCH
25
26 /*
27 ** WORK IN PROGRESS!
28 **
29 ** OpenLDAP reentrancy/thread-safeness should be dynamically
30 ** checked using ldap_get_option().
31 **
32 ** The -lldap implementation may or may not be:
33 **              LDAP_API_FEATURE_THREAD_SAFE
34 **
35 ** The preprocessor flag LDAP_API_FEATURE_X_OPENLDAP_REENTRANT can
36 ** be used to determine if -lldap is LDAP_API_FEATURE_THREAD_SAFE at
37 ** compile time.
38 **
39 ** The -lldap_r implementation is always THREAD_SAFE but
40 ** may also be:
41 **              LDAP_API_FEATURE_SESSION_THREAD_SAFE
42 **              LDAP_API_FEATURE_OPERATION_THREAD_SAFE
43 **
44 ** The preprocessor flag LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE
45 ** can be used to determine if -lldap_r is available at compile
46 ** time.  You must define LDAP_THREAD_SAFE if and only if you
47 ** link with -lldap_r.
48 **
49 ** If you fail to define LDAP_THREAD_SAFE when linking with
50 ** -lldap_r or define LDAP_THREAD_SAFE when linking with -lldap,
51 ** provided header definations and declarations may be incorrect.
52 **
53 */
54
55 /* is -lldap reentrant or not */
56 #undef LDAP_API_FEATURE_X_OPENLDAP_REENTRANT
57
58 /* is threadsafe version of -lldap (ie: -lldap_r) *available* or not */
59 #undef LDAP_API_FEATURE_X_OPENLDAP_THREAD_SAFE
60
61 /* LDAP v2 Kerberos Bind */
62 #undef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
63
64 /* LDAP v2 Referrals */
65 #undef LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS
66
67 /* LDAP Server Side Sort. */
68 #define LDAP_API_FEATURE_SERVER_SIDE_SORT 1000
69
70 /* LDAP Virtual List View. */ 
71 #define LDAP_API_FEATURE_VIRTUAL_LIST_VIEW 1000
72
73 #endif /* LDAP_FEATURES */