亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? http_config.h

?? Apache_2.0.59-Openssl_0.9 配置tomcat. Apache_2.0.59-Openssl_0.9 配置tomcat.
?? H
?? 第 1 頁 / 共 3 頁
字號:
/* 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.
 */

#ifndef APACHE_HTTP_CONFIG_H
#define APACHE_HTTP_CONFIG_H

#include "apr_hooks.h"
#include "util_cfgtree.h"

#ifdef __cplusplus
extern "C" {
#endif

/**
 * @file http_config.h
 * @brief Apache Configuration
 */

/*
 * The central data structures around here...
 */

/* Command dispatch structures... */

/**
 * How the directives arguments should be parsed.
 * @remark Note that for all of these except RAW_ARGS, the config routine is
 *      passed a freshly allocated string which can be modified or stored
 *      or whatever...
 */
enum cmd_how {
    RAW_ARGS,			/**< cmd_func parses command line itself */
    TAKE1,			/**< one argument only */
    TAKE2,			/**< two arguments only */
    ITERATE,			/**< one argument, occuring multiple times
				 * (e.g., IndexIgnore)
				 */
    ITERATE2,			/**< two arguments, 2nd occurs multiple times
				 * (e.g., AddIcon)
				 */
    FLAG,			/**< One of 'On' or 'Off' */
    NO_ARGS,			/**< No args at all, e.g. </Directory> */
    TAKE12,			/**< one or two arguments */
    TAKE3,			/**< three arguments only */
    TAKE23,			/**< two or three arguments */
    TAKE123,			/**< one, two or three arguments */
    TAKE13			/**< one or three arguments */
};
/**
 * This structure is passed to a command which is being invoked,
 * to carry a large variety of miscellaneous data which is all of
 * use to *somebody*...
 */
typedef struct cmd_parms_struct cmd_parms;

#if defined(AP_HAVE_DESIGNATED_INITIALIZER) || defined(DOXYGEN)

/** 
 * All the types of functions that can be used in directives
 * @internal
 */
typedef union {
    /** function to call for a no-args */
    const char *(*no_args) (cmd_parms *parms, void *mconfig);
    /** function to call for a raw-args */
    const char *(*raw_args) (cmd_parms *parms, void *mconfig,
			     const char *args);
    /** function to call for a take1 */
    const char *(*take1) (cmd_parms *parms, void *mconfig, const char *w);
    /** function to call for a take2 */
    const char *(*take2) (cmd_parms *parms, void *mconfig, const char *w,
			  const char *w2);
    /** function to call for a take3 */
    const char *(*take3) (cmd_parms *parms, void *mconfig, const char *w,
			  const char *w2, const char *w3);
    /** function to call for a flag */
    const char *(*flag) (cmd_parms *parms, void *mconfig, int on);
} cmd_func;

/** This configuration directive does not take any arguments */
# define AP_NO_ARGS	func.no_args
/** This configuration directive will handle it's own parsing of arguments*/
# define AP_RAW_ARGS	func.raw_args
/** This configuration directive takes 1 argument*/
# define AP_TAKE1	func.take1
/** This configuration directive takes 2 arguments */
# define AP_TAKE2	func.take2
/** This configuration directive takes 3 arguments */
# define AP_TAKE3	func.take3
/** This configuration directive takes a flag (on/off) as a argument*/
# define AP_FLAG	func.flag

/** method of declaring a directive with no arguments */
# define AP_INIT_NO_ARGS(directive, func, mconfig, where, help) \
    { directive, { .no_args=func }, mconfig, where, RAW_ARGS, help }
/** method of declaring a directive with raw argument parsing */
# define AP_INIT_RAW_ARGS(directive, func, mconfig, where, help) \
    { directive, { .raw_args=func }, mconfig, where, RAW_ARGS, help }
/** method of declaring a directive which takes 1 argument */
# define AP_INIT_TAKE1(directive, func, mconfig, where, help) \
    { directive, { .take1=func }, mconfig, where, TAKE1, help }
/** method of declaring a directive which takes multiple arguments */
# define AP_INIT_ITERATE(directive, func, mconfig, where, help) \
    { directive, { .take1=func }, mconfig, where, ITERATE, help }
/** method of declaring a directive which takes 2 arguments */
# define AP_INIT_TAKE2(directive, func, mconfig, where, help) \
    { directive, { .take2=func }, mconfig, where, TAKE2, help }
/** method of declaring a directive which takes 1 or 2 arguments */
# define AP_INIT_TAKE12(directive, func, mconfig, where, help) \
    { directive, { .take2=func }, mconfig, where, TAKE12, help }
/** method of declaring a directive which takes multiple 2 arguments */
# define AP_INIT_ITERATE2(directive, func, mconfig, where, help) \
    { directive, { .take2=func }, mconfig, where, ITERATE2, help }
/** method of declaring a directive which takes 1 or 3 arguments */
# define AP_INIT_TAKE13(directive, func, mconfig, where, help) \
    { directive, { .take3=func }, mconfig, where, TAKE13, help }
/** method of declaring a directive which takes 2 or 3 arguments */
# define AP_INIT_TAKE23(directive, func, mconfig, where, help) \
    { directive, { .take3=func }, mconfig, where, TAKE23, help }
/** method of declaring a directive which takes 1 to 3 arguments */
# define AP_INIT_TAKE123(directive, func, mconfig, where, help) \
    { directive, { .take3=func }, mconfig, where, TAKE123, help }
/** method of declaring a directive which takes 3 arguments */
# define AP_INIT_TAKE3(directive, func, mconfig, where, help) \
    { directive, { .take3=func }, mconfig, where, TAKE3, help }
/** method of declaring a directive which takes a flag (on/off) as a argument*/
# define AP_INIT_FLAG(directive, func, mconfig, where, help) \
    { directive, { .flag=func }, mconfig, where, FLAG, help }

#else /* AP_HAVE_DESIGNATED_INITIALIZER */

typedef const char *(*cmd_func) ();

# define AP_NO_ARGS  func
# define AP_RAW_ARGS func
# define AP_TAKE1    func
# define AP_TAKE2    func
# define AP_TAKE3    func
# define AP_FLAG     func

# define AP_INIT_NO_ARGS(directive, func, mconfig, where, help) \
    { directive, func, mconfig, where, RAW_ARGS, help }
# define AP_INIT_RAW_ARGS(directive, func, mconfig, where, help) \
    { directive, func, mconfig, where, RAW_ARGS, help }
# define AP_INIT_TAKE1(directive, func, mconfig, where, help) \
    { directive, func, mconfig, where, TAKE1, help }
# define AP_INIT_ITERATE(directive, func, mconfig, where, help) \
    { directive, func, mconfig, where, ITERATE, help }
# define AP_INIT_TAKE2(directive, func, mconfig, where, help) \
    { directive, func, mconfig, where, TAKE2, help }
# define AP_INIT_TAKE12(directive, func, mconfig, where, help) \
    { directive, func, mconfig, where, TAKE12, help }
# define AP_INIT_ITERATE2(directive, func, mconfig, where, help) \
    { directive, func, mconfig, where, ITERATE2, help }
# define AP_INIT_TAKE13(directive, func, mconfig, where, help) \
    { directive, func, mconfig, where, TAKE13, help }
# define AP_INIT_TAKE23(directive, func, mconfig, where, help) \
    { directive, func, mconfig, where, TAKE23, help }
# define AP_INIT_TAKE123(directive, func, mconfig, where, help) \
    { directive, func, mconfig, where, TAKE123, help }
# define AP_INIT_TAKE3(directive, func, mconfig, where, help) \
    { directive, func, mconfig, where, TAKE3, help }
# define AP_INIT_FLAG(directive, func, mconfig, where, help) \
    { directive, func, mconfig, where, FLAG, help }

#endif /* AP_HAVE_DESIGNATED_INITIALIZER */

/**
 * The command record structure.  Each modules can define a table of these
 * to define the directives it will implement.
 */
typedef struct command_struct command_rec; 
struct command_struct {
    /** Name of this command */
    const char *name;
    /** The function to be called when this directive is parsed */
    cmd_func func;
    /** Extra data, for functions which implement multiple commands... */
    void *cmd_data;		
    /** What overrides need to be allowed to enable this command. */
    int req_override;
    /** What the command expects as arguments 
     *  @defvar cmd_how args_how*/
    enum cmd_how args_how;

    /** 'usage' message, in case of syntax errors */
    const char *errmsg;
};

/**
 * @defgroup ConfigDirectives Allowed locations for configuration directives.
 *
 * The allowed locations for a configuration directive are the union of
 * those indicated by each set bit in the req_override mask.
 *
 * @{
 */
#define OR_NONE 0             /**< *.conf is not available anywhere in this override */
#define OR_LIMIT 1	     /**< *.conf inside <Directory> or <Location>
				and .htaccess when AllowOverride Limit */
#define OR_OPTIONS 2         /**< *.conf anywhere
                                and .htaccess when AllowOverride Options */
#define OR_FILEINFO 4        /**< *.conf anywhere
				and .htaccess when AllowOverride FileInfo */
#define OR_AUTHCFG 8         /**< *.conf inside <Directory> or <Location>
				and .htaccess when AllowOverride AuthConfig */
#define OR_INDEXES 16        /**< *.conf anywhere
				and .htaccess when AllowOverride Indexes */
#define OR_UNSET 32          /**< unset a directive (in Allow) */
#define ACCESS_CONF 64       /**< *.conf inside <Directory> or <Location> */
#define RSRC_CONF 128	     /**< *.conf outside <Directory> or <Location> */
#define EXEC_ON_READ 256     /**< force directive to execute a command 
                which would modify the configuration (like including another
                file, or IFModule */
/** this directive can be placed anywhere */
#define OR_ALL (OR_LIMIT|OR_OPTIONS|OR_FILEINFO|OR_AUTHCFG|OR_INDEXES)

/** @} */

/**
 * This can be returned by a function if they don't wish to handle
 * a command. Make it something not likely someone will actually use
 * as an error code.
 */
#define DECLINE_CMD "\a\b"

/** Common structure for reading of config files / passwd files etc. */
typedef struct ap_configfile_t ap_configfile_t;
struct ap_configfile_t {
    int (*getch) (void *param);	    /**< a getc()-like function */
    void *(*getstr) (void *buf, size_t bufsiz, void *param);
				    /**< a fgets()-like function */
    int (*close) (void *param);	    /**< a close handler function */
    void *param;                    /**< the argument passed to getch/getstr/close */
    const char *name;               /**< the filename / description */
    unsigned line_number;           /**< current line number, starting at 1 */
};

/**
 * This structure is passed to a command which is being invoked,
 * to carry a large variety of miscellaneous data which is all of
 * use to *somebody*...
 */
struct cmd_parms_struct {
    /** Argument to command from cmd_table */
    void *info;
    /** Which allow-override bits are set */
    int override;
    /** Which methods are <Limit>ed */
    apr_int64_t limited;
    /** methods which are limited */
    apr_array_header_t *limited_xmethods;
    /** methods which are xlimited */
    ap_method_list_t *xlimited;

    /** Config file structure. */
    ap_configfile_t *config_file;
    /** the directive specifying this command */
    ap_directive_t *directive;

    /** Pool to allocate new storage in */
    apr_pool_t *pool;
    /** Pool for scratch memory; persists during configuration, but 
     *  wiped before the first request is served...  */
    apr_pool_t *temp_pool;
    /** Server_rec being configured for */
    server_rec *server;
    /** If configuring for a directory, pathname of that directory.  
     *  NOPE!  That's what it meant previous to the existance of <Files>, 
     * <Location> and regex matching.  Now the only usefulness that can be 
     * derived from this field is whether a command is being called in a 
     * server context (path == NULL) or being called in a dir context 
     * (path != NULL).  */
    char *path;
    /** configuration command */
    const command_rec *cmd;

    /** per_dir_config vector passed to handle_command */
    struct ap_conf_vector_t *context;
    /** directive with syntax error */
    const ap_directive_t *err_directive;
};

/**
 * Module structures.  Just about everything is dispatched through
 * these, directly or indirectly (through the command and handler
 * tables).
 */
typedef struct module_struct module;
struct module_struct {
    /** API version, *not* module version; check that module is 
     * compatible with this version of the server.
     */
    int version;
    /** API minor version. Provides API feature milestones. Not checked 
     *  during module init */
    int minor_version;
    /** Index to this modules structures in config vectors.  */
    int module_index;

    /** The name of the module's C file */
    const char *name;
    /** The handle for the DSO.  Internal use only */
    void *dynamic_load_handle;

    /** A pointer to the next module in the list
     *  @defvar module_struct *next */
    struct module_struct *next;

    /** Magic Cookie to identify a module structure;  It's mainly 
     *  important for the DSO facility (see also mod_so).  */
    unsigned long magic;

    /** Function to allow MPMs to re-write command line arguments.  This
     *  hook is only available to MPMs.
     *  @param The process that the server is running in.
     */
    void (*rewrite_args) (process_rec *process);
    /** Function to allow all modules to create per directory configuration
     *  structures.
     *  @param p The pool to use for all allocations.
     *  @param dir The directory currently being processed.
     *  @return The per-directory structure created
     */
    void *(*create_dir_config) (apr_pool_t *p, char *dir);
    /** Function to allow all modules to merge the per directory configuration
     *  structures for two directories.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成+人+日韩+欧美+亚洲| 精品国产亚洲在线| 精品国产成人系列| 中文字幕一区免费在线观看| 日韩国产一二三区| 在线观看国产日韩| 国产精品日日摸夜夜摸av| 久久精品国产秦先生| 在线一区二区三区四区| 国产精品超碰97尤物18| 国产在线视频精品一区| 日韩一级黄色大片| 亚洲成人福利片| 色综合久久中文字幕综合网| 国产亚洲一区二区三区| 精品一区二区三区日韩| 717成人午夜免费福利电影| 亚洲理论在线观看| aa级大片欧美| 国产精品美女久久久久av爽李琼 | 91精品国产丝袜白色高跟鞋| 国产精品高清亚洲| 成人午夜在线视频| 欧美激情中文字幕一区二区| 国产一区二区三区四区五区美女| 91精品婷婷国产综合久久 | 91精品国产91久久久久久一区二区| 欧美精彩视频一区二区三区| 狠狠色丁香久久婷婷综合_中| 91麻豆精品国产91久久久久久| 亚洲一区二区三区自拍| 欧洲视频一区二区| 亚洲午夜在线电影| 欧美精品丝袜中出| 免费欧美日韩国产三级电影| 欧美一区二区三区在线观看| 日产精品久久久久久久性色 | 日本精品一区二区三区四区的功能| 中文成人av在线| 95精品视频在线| 樱花影视一区二区| 制服丝袜中文字幕亚洲| 极品少妇一区二区| 欧美激情自拍偷拍| 色婷婷久久99综合精品jk白丝 | 国产精品妹子av| 91小视频免费观看| 亚洲二区在线观看| 在线不卡欧美精品一区二区三区| 婷婷激情综合网| 精品少妇一区二区三区| 国产成人8x视频一区二区| 综合自拍亚洲综合图不卡区| 欧美日韩精品欧美日韩精品| 老司机午夜精品| 1024成人网| 欧美三级韩国三级日本三斤| 蜜桃一区二区三区在线观看| 国产三级精品在线| 在线观看日韩av先锋影音电影院| 天堂在线亚洲视频| 国产欧美综合色| 欧洲一区在线观看| 久久精品99久久久| 中文字幕在线观看一区二区| 欧美精品乱人伦久久久久久| 国产精品一区二区男女羞羞无遮挡| 亚洲欧美一区二区在线观看| 这里只有精品电影| 99这里只有久久精品视频| 丝袜诱惑亚洲看片| 国产精品嫩草99a| 在线播放日韩导航| 91亚洲男人天堂| 国产一二三精品| 一区二区成人在线观看| 久久久国产精品麻豆| 在线精品视频免费观看| 国模一区二区三区白浆| 亚洲高清免费视频| 国产精品久久久久久久久免费樱桃 | 欧美成人aa大片| 日本久久精品电影| 成人午夜碰碰视频| 精品在线观看免费| 亚洲成a人v欧美综合天堂下载| 国产日韩av一区| 精品黑人一区二区三区久久| 欧美伊人久久久久久久久影院 | 久久国产精品一区二区| 性欧美疯狂xxxxbbbb| 国产精品久久久久7777按摩| 精品嫩草影院久久| 欧美一二三四区在线| 欧美性一二三区| 91在线免费播放| 高清免费成人av| 国产精品综合网| 麻豆精品久久精品色综合| 天堂久久一区二区三区| 亚欧色一区w666天堂| 亚洲成人1区2区| 亚洲二区在线观看| 婷婷开心久久网| 日韩电影在线观看电影| 五月激情丁香一区二区三区| 亚洲综合在线视频| 一区二区高清免费观看影视大全 | 一区二区三区四区不卡在线| 国产精品视频一二三区 | 一区二区不卡在线视频 午夜欧美不卡在| 久久―日本道色综合久久| 欧美xxxxxxxx| 2022国产精品视频| www亚洲一区| 久久日一线二线三线suv| 26uuuu精品一区二区| 精品国产一区久久| 国产视频不卡一区| 国产精品美女久久久久久久久久久| 国产精品美女久久久久aⅴ国产馆| 国产精品色婷婷| 亚洲人妖av一区二区| 亚洲欧美另类久久久精品 | 日韩精品视频网站| 日韩精品一级中文字幕精品视频免费观看| 一区二区三区精品| 日韩中文字幕不卡| 紧缚捆绑精品一区二区| 成人精品国产一区二区4080| 99精品视频中文字幕| 欧美日韩在线三区| 国产日韩欧美一区二区三区乱码| 日韩免费观看高清完整版| 国产午夜精品理论片a级大结局| 国产精品毛片久久久久久久| 一区二区三区在线视频观看| 日日骚欧美日韩| 国产盗摄一区二区| 色嗨嗨av一区二区三区| 91精品婷婷国产综合久久竹菊| 精品国产欧美一区二区| 中文字幕欧美激情一区| 亚洲一区二区av在线| 看国产成人h片视频| 成年人国产精品| 欧美精品乱码久久久久久按摩| 精品成a人在线观看| 亚洲免费av在线| 六月丁香婷婷久久| 99久久精品费精品国产一区二区| 在线播放中文一区| 亚洲视频一区二区免费在线观看| 亚洲成av人片在线观看| 成人黄色在线看| 91精品国产综合久久久久久久| 亚洲国产精品t66y| 免费观看日韩电影| 色诱亚洲精品久久久久久| 欧美电视剧免费全集观看| 亚洲综合在线第一页| 国产精品99久| 日韩一区二区精品在线观看| 亚洲色图视频网| 日本中文在线一区| 色吊一区二区三区| 国产欧美日韩另类一区| 人人狠狠综合久久亚洲| 色综合天天综合在线视频| 久久综合九色综合97_久久久| 亚洲国产视频一区| 99re免费视频精品全部| 欧美成人猛片aaaaaaa| 五月综合激情日本mⅴ| 91在线观看成人| 国产精品美女久久久久久| 国产精品亚洲人在线观看| 日韩精品在线一区| 日韩中文字幕一区二区三区| 91久久国产综合久久| 亚洲国产高清不卡| 国产精品一区二区黑丝| 日韩你懂的在线播放| 久久精品噜噜噜成人av农村| 欧美久久一二三四区| 亚洲国产欧美日韩另类综合| 色婷婷亚洲精品| 亚洲综合区在线| 91在线观看视频| 亚洲狠狠丁香婷婷综合久久久| 91一区二区在线观看| 中文字幕一区视频| 99久久久久久| 亚洲伦理在线精品| 91久久精品午夜一区二区| 亚洲激情欧美激情| 91福利视频网站| 视频一区欧美精品| 日韩欧美卡一卡二| 国产伦精品一区二区三区在线观看|