资源简介
httpd-2.2.16.tar.gz
代码片段和文件信息
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License Version 2.0
* (the “License“); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing software
* distributed under the License is distributed on an “AS IS“ BASIS
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include “ap_provider.h“
#include “httpd.h“
#include “http_config.h“
#include “http_core.h“
#include “http_log.h“
#include “http_protocol.h“
#include “http_request.h“
#include “util_ldap.h“
#include “mod_auth.h“
#include “apr_strings.h“
#include “apr_xlate.h“
#define APR_WANT_STRFUNC
#include “apr_want.h“
#include “apr_lib.h“
#if APR_HAVE_UNISTD_H
/* for getpid() */
#include
#endif
#include
#if !APR_HAS_LDAP
#error mod_authnz_ldap requires APR-util to have LDAP support built in. To fix add --with-ldap to ./configure.
#endif
typedef struct {
apr_pool_t *pool; /* Pool that this config is allocated from */
#if APR_HAS_THREADS
apr_thread_mutex_t *lock; /* Lock for this config */
#endif
int auth_authoritative; /* Is this auth method the one and only? */
/* int authz_enabled; Is ldap authorization enabled in this directory? */
/* These parameters are all derived from the AuthLDAPURL directive */
char *url; /* String representation of the URL */
char *host; /* Name of the LDAP server (or space separated list) */
int port; /* Port of the LDAP server */
char *basedn; /* base DN to do all searches from */
char *attribute; /* Attribute to search for */
char **attributes; /* Array of all the attributes to return */
int scope; /* Scope of the search */
char *filter; /* Filter to further limit the search */
deref_options deref; /* how to handle alias dereferening */
char *binddn; /* DN to bind to server (can be NULL) */
char *bindpw; /* Password to bind to server (can be NULL) */
int bind_authoritative; /* If true will return errors when bind fails */
int user_is_dn; /* If true connection->user is DN instead of userid */
char *remote_user_attribute; /* If set connection->user is this attribute instead of userid */
int compare_dn_on_server; /* If true will use server to do DN compare */
int have_
- 上一篇:2路VL53L0X测距.zip
- 下一篇:Zdanmaku.unitypackage
相关资源
- 官网Apache2.2
- 基于Apache Mina实现的TCP长连接和短连接
- php程序实现数据库的增删改查
- Apache Subversion1.10.3服务端SVN
- apache-maven-3.6.0
- apache-httpd2.5安装及配置(包含教程及
- hadoop技术内幕三件套
- Graph Algorithms:Practical Examples in Apach
- The Apache Ignite book PDF(正版购买的全网
- apache-tomcat-7.0.79.zip
- apache_2.2.14.rar
- Apache atlas使用说明文档.pdf转载分享请
- apache-maven-3.2.3.zip
- apr-1.5.2.tar.gz+apr-util-1.5.2.tar.gz
- Practical Graph Analytics with Apache Giraph(
- 大数据元数据开源解决方案apache atl
- apache/httpd安全配置方法总结
- apache 2.4
- Linux CentOS离线环境下安装Apache所需要
- Apachehttpd-2.2.21-win32-x86-no_ssl.msi
- apache-maven-3.1.1-bin.tar
- apache-tomcat-6.0.47.tar.gz
- Apache kafka官方文档
- apache-maven-3.5.3-bin。maven-3.5.3全面支持
- apache-tomcat-7.0.63-windows-x64
- Apache-maven3.5.0安装包
- apache-tomcat-9.0.0.M26.tar
- apache-ant-1.10.3
- apache-maven
- Apache HTTP 服务器 2.4 中文 文档/手册
评论
共有 条评论