diff options
author | Eric Covener <covener@apache.org> | 2007-07-19 21:05:16 +0000 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2007-07-19 21:05:16 +0000 |
commit | f65de07e7e4a4a19b45f0c1543ba7669a1f5e867 (patch) | |
tree | a9dc328e78ec11a9ac8cb8b37a3e82bcf96d4fd1 /include | |
parent | 08355e91d3dd607f6c76e8bfaeed65434e3b846b (diff) | |
download | httpd-f65de07e7e4a4a19b45f0c1543ba7669a1f5e867.tar.gz |
revert revision 555470
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@557772 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/util_ldap.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/util_ldap.h b/include/util_ldap.h index 94a41a6df7..d03e67fd66 100644 --- a/include/util_ldap.h +++ b/include/util_ldap.h @@ -96,7 +96,7 @@ typedef struct util_ldap_connection_t { const char *host; /* Name of the LDAP server (or space separated list) */ int port; /* Port of the LDAP server */ - int deref; /* how to handle alias dereferening */ + deref_options deref; /* how to handle alias dereferening */ const char *binddn; /* DN to bind to server (can be NULL) */ const char *bindpw; /* Password to bind to server (can be NULL) */ @@ -206,11 +206,11 @@ APR_DECLARE_OPTIONAL_FN(apr_status_t,uldap_connection_cleanup,(void *param)); * use this connection while it is busy. Once you are finished with a connection, * apr_ldap_connection_close() must be called to release this connection. * @fn util_ldap_connection_t *util_ldap_connection_find(request_rec *r, const char *host, int port, - * const char *binddn, const char *bindpw, int deref, + * const char *binddn, const char *bindpw, deref_options deref, * int netscapessl, int starttls) */ APR_DECLARE_OPTIONAL_FN(util_ldap_connection_t *,uldap_connection_find,(request_rec *r, const char *host, int port, - const char *binddn, const char *bindpw, int deref, + const char *binddn, const char *bindpw, deref_options deref, int secure)); /** |