home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / apache_2.2.8-win32-x86-no_ssl.msi / Data1.cab / _41B2E3B653E830B3645C9EFA0CE7C057 < prev    next >
Text File  |  2008-01-18  |  4KB  |  132 lines

  1. /* Licensed to the Apache Software Foundation (ASF) under one or more
  2.  * contributor license agreements.  See the NOTICE file distributed with
  3.  * this work for additional information regarding copyright ownership.
  4.  * The ASF licenses this file to You under the Apache License, Version 2.0
  5.  * (the "License"); you may not use this file except in compliance with
  6.  * the License.  You may obtain a copy of the License at
  7.  *
  8.  *     http://www.apache.org/licenses/LICENSE-2.0
  9.  *
  10.  * Unless required by applicable law or agreed to in writing, software
  11.  * distributed under the License is distributed on an "AS IS" BASIS,
  12.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.  * See the License for the specific language governing permissions and
  14.  * limitations under the License.
  15.  */
  16.  
  17. /*
  18.  * apr_ldap.h is generated from apr_ldap.h.in by configure -- do not edit apr_ldap.h
  19.  */
  20. /**
  21.  * @file apr_ldap.h
  22.  * @brief  APR-UTIL LDAP 
  23.  */
  24. #ifndef APU_LDAP_H
  25. #define APU_LDAP_H
  26.  
  27. /**
  28.  * @defgroup APR_Util_LDAP LDAP
  29.  * @ingroup APR_Util
  30.  * @{
  31.  */
  32.  
  33. /* this will be defined if LDAP support was compiled into apr-util */
  34. #define APR_HAS_LDAP            1
  35.  
  36. /* identify the LDAP toolkit used */
  37. #define APR_HAS_NETSCAPE_LDAPSDK    0
  38. #define APR_HAS_SOLARIS_LDAPSDK     0
  39. #define APR_HAS_NOVELL_LDAPSDK      0
  40. #define APR_HAS_MOZILLA_LDAPSDK     0
  41. #define APR_HAS_OPENLDAP_LDAPSDK    0
  42. #define APR_HAS_MICROSOFT_LDAPSDK   1
  43. #define APR_HAS_OTHER_LDAPSDK       0
  44.  
  45.  
  46. /*
  47.  * Handle the case when LDAP is enabled
  48.  */
  49. #if APR_HAS_LDAP
  50.  
  51. /*
  52.  * The following #defines are DEPRECATED and should not be used for
  53.  * anything. They remain to maintain binary compatibility.
  54.  * The original code defined the OPENLDAP SDK as present regardless
  55.  * of what really was there, which was way bogus. In addition, the
  56.  * apr_ldap_url_parse*() functions have been rewritten specifically for
  57.  * APR, so the APR_HAS_LDAP_URL_PARSE macro is forced to zero.
  58.  */
  59. #define APR_HAS_LDAP_SSL 1
  60. #define APR_HAS_LDAP_URL_PARSE 0
  61.  
  62.  
  63. /*
  64.  * Include the standard LDAP header files.
  65.  */
  66.  
  67. #include <winldap.h>
  68.  
  69.  
  70. /*
  71.  * Detected standard functions
  72.  */
  73. #define APR_HAS_LDAPSSL_CLIENT_INIT 0
  74. #define APR_HAS_LDAPSSL_CLIENT_DEINIT 0
  75. #define APR_HAS_LDAPSSL_ADD_TRUSTED_CERT 0
  76. #define APR_HAS_LDAP_START_TLS_S 0
  77. #define APR_HAS_LDAP_SSLINIT 1
  78. #define APR_HAS_LDAPSSL_INIT 0
  79. #define APR_HAS_LDAPSSL_INSTALL_ROUTINES 0
  80.  
  81.  
  82. /*
  83.  * Make sure the secure LDAP port is defined
  84.  */
  85. #ifndef LDAPS_PORT
  86. #define LDAPS_PORT 636  /* ldaps:/// default LDAP over TLS port */
  87. #endif
  88.  
  89.  
  90. /*
  91.  * For ldap function calls that input a size limit on the number of returned elements
  92.  * Some SDKs do not have the define for LDAP_DEFAULT_LIMIT (-1) or LDAP_NO_LIMIT (0)
  93.  */
  94. #define APR_LDAP_SIZELIMIT LDAP_NO_LIMIT
  95.  
  96.  
  97. /* Note: Macros defining const casting has been removed in APR v1.0,
  98.  * pending real support for LDAP v2.0 toolkits.
  99.  *
  100.  * In the mean time, please use an LDAP v3.0 toolkit.
  101.  */
  102. #if LDAP_VERSION_MAX <= 2
  103. #error Support for LDAP v2.0 toolkits has been removed from apr-util. Please use an LDAP v3.0 toolkit.
  104. #endif 
  105.  
  106. #ifdef __cplusplus
  107. extern "C" {
  108. #endif /* __cplusplus */
  109.  
  110. /**
  111.  * This structure allows the C LDAP API error codes to be returned
  112.  * along with plain text error messages that explain to us mere mortals
  113.  * what really happened.
  114.  */
  115. typedef struct apr_ldap_err_t {
  116.     const char *reason;
  117.     const char *msg;
  118.     int rc;
  119. } apr_ldap_err_t;
  120.  
  121. #ifdef __cplusplus
  122. }
  123. #endif
  124.  
  125. #include "apr_ldap_url.h"
  126. #include "apr_ldap_init.h"
  127. #include "apr_ldap_option.h"
  128.  
  129. /** @} */
  130. #endif /* APR_HAS_LDAP */
  131. #endif /* APU_LDAP_H */
  132.