diff options
author | Eric Covener <covener@apache.org> | 2009-10-30 03:07:45 +0100 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2009-10-30 03:07:45 +0100 |
commit | 4e6f442708c81b55f7ee85336d32a71fbbf0cfce (patch) | |
tree | 42c938338cad6226e7ba8e2d209f3037ad7b9eaa /include | |
parent | removed now obsolete export defines. (diff) | |
download | apache2-4e6f442708c81b55f7ee85336d32a71fbbf0cfce.tar.xz apache2-4e6f442708c81b55f7ee85336d32a71fbbf0cfce.zip |
add LDAPLibraryDebug directive to mod_ldap to turn on
tracing in underlying LDAP SDK, where all the interesting tidbits
about all kinds of LDAP errors are hidden.
Unfortunately windows doesn't implement this LDAP_OPT.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@831183 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/ap_mmn.h | 3 | ||||
-rw-r--r-- | include/util_ldap.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/ap_mmn.h b/include/ap_mmn.h index 0156ffc779..76d52f0c5b 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -202,6 +202,7 @@ * mod_logio * 20091011.0 (2.3.3-dev) Move preserve_host{,_set} from proxy_server_conf to * proxy_dir_conf + * 20091011.1 (2.3.3-dev) add debug_level to util_ldap_state_t * */ @@ -210,7 +211,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20091011 #endif -#define MODULE_MAGIC_NUMBER_MINOR 0 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 1 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a diff --git a/include/util_ldap.h b/include/util_ldap.h index e782276fd7..de5c617439 100644 --- a/include/util_ldap.h +++ b/include/util_ldap.h @@ -164,6 +164,7 @@ typedef struct util_ldap_state_t { char *lock_file; /* filename for shm lock mutex */ long connectionTimeout; int verify_svr_cert; + int debug_level; /* SDK debug level */ } util_ldap_state_t; |