亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
日韩网站在线看片你懂的| 日韩精品免费视频人成| 国产精品911| 欧美精品一区二区三区蜜桃| 久久电影网电视剧免费观看| 久久免费视频一区| 国产一区不卡视频| 国产精品看片你懂得| 播五月开心婷婷综合| 亚洲柠檬福利资源导航| 欧美午夜电影一区| 日韩成人一区二区三区在线观看| 在线电影一区二区三区| 麻豆久久一区二区| 中文字幕av资源一区| 91丨九色丨蝌蚪丨老版| 亚洲地区一二三色| 精品国产髙清在线看国产毛片| 国产乱对白刺激视频不卡 | 欧美日韩在线免费视频| 日日夜夜精品视频天天综合网| 精品国产免费人成电影在线观看四季 | 国产一区二区三区四区五区美女| 国产精品乱人伦| 欧美日韩视频在线一区二区| 久久不见久久见免费视频1| 国产精品无码永久免费888| 日本高清视频一区二区| 麻豆精品精品国产自在97香蕉| 国产精品人妖ts系列视频 | 国产精品久久久久久久久免费桃花| 毛片av一区二区| 波多野结衣中文字幕一区二区三区| 日韩欧美一级在线播放| 久久麻豆一区二区| jiyouzz国产精品久久| 99精品桃花视频在线观看| 欧美久久久久免费| 一区二区三区欧美在线观看| 国产精品91xxx| 日韩欧美一区电影| 国产suv一区二区三区88区| 精品对白一区国产伦| 热久久国产精品| 欧美精品在线观看一区二区| 亚洲婷婷综合色高清在线| 成人丝袜18视频在线观看| 欧美色图12p| 亚洲天堂网中文字| 国产大陆精品国产| 亚洲人成影院在线观看| 免费观看一级特黄欧美大片| 91精品国模一区二区三区| 亚洲乱码国产乱码精品精的特点 | 成人免费视频一区| 91网站最新地址| 久久美女艺术照精彩视频福利播放| 中文乱码免费一区二区 | 国产成人亚洲综合a∨猫咪| 欧美日韩中字一区| 精品一区二区av| 亚洲色图一区二区三区| 粉嫩蜜臀av国产精品网站| 国产精品欧美一级免费| 欧美日韩精品欧美日韩精品一综合| 精品少妇一区二区三区在线视频| 欧美精品乱码久久久久久| 日韩av电影免费观看高清完整版 | 精品国产电影一区二区| 欧美日韩国产综合视频在线观看 | 精品一区二区三区不卡 | 韩国精品在线观看| 日韩精品久久理论片| 亚洲国产精品久久久男人的天堂| 中文字幕一区二区三区不卡| 欧美国产日产图区| 国产欧美精品区一区二区三区| 2021久久国产精品不只是精品| 日韩免费视频线观看| 精品久久一区二区| 精品久久一二三区| 国产午夜精品一区二区| 国产人成亚洲第一网站在线播放| 国产亚洲一区二区三区| 久久伊人中文字幕| 国产日本一区二区| 国产精品国产三级国产三级人妇| 国产精品久久久久久久久免费丝袜 | 精品国产伦一区二区三区免费 | 日韩精品电影一区亚洲| 日韩 欧美一区二区三区| 久久精品国产精品青草| 国产一区视频在线看| 国产jizzjizz一区二区| 91在线看国产| 欧美日韩一区不卡| 欧美成人综合网站| 久久男人中文字幕资源站| 欧美国产精品一区二区三区| 日韩理论电影院| 性感美女极品91精品| 精油按摩中文字幕久久| 国产99一区视频免费| 在线视频欧美精品| 欧美一级在线观看| 亚洲国产经典视频| 亚洲一区二区三区在线看| 美腿丝袜亚洲色图| 成人黄色av网站在线| 欧洲av一区二区嗯嗯嗯啊| 日韩欧美国产综合一区 | 国产精品美女久久久久aⅴ国产馆| 中文字幕一区二区三区精华液| 午夜视频在线观看一区二区 | 国产精品高清亚洲| 亚洲成av人片在www色猫咪| 精品一区二区三区免费毛片爱| 懂色av一区二区三区蜜臀| 欧美日韩一区不卡| 久久精品夜色噜噜亚洲a∨| 亚洲综合在线电影| 韩日av一区二区| 欧美性感一区二区三区| 久久久精品蜜桃| 婷婷夜色潮精品综合在线| 国产精品99久久久久久宅男| 欧美私人免费视频| 欧美激情一区二区在线| 奇米亚洲午夜久久精品| 99久精品国产| 久久综合成人精品亚洲另类欧美| 亚洲免费观看高清完整版在线观看| 另类的小说在线视频另类成人小视频在线| 粉嫩绯色av一区二区在线观看| 91.com在线观看| 亚洲免费看黄网站| 国产成人在线影院| 欧美一区二区精品| 亚洲综合免费观看高清在线观看| 国产大陆精品国产| 欧美成人vps| 日韩精品国产精品| 欧美变态凌虐bdsm| 国产精品久久久久国产精品日日 | 91精品在线免费| 亚洲视频每日更新| 国产v日产∨综合v精品视频| 2023国产精品视频| 欧美日韩三级一区二区| 9191精品国产综合久久久久久| 久久先锋影音av| 亚洲图片欧美色图| 国产精品中文字幕日韩精品 | 精品成人免费观看| 亚洲免费毛片网站| 激情深爱一区二区| 91香蕉视频污在线| 日韩欧美高清dvd碟片| 中文字幕日韩av资源站| 免费看欧美女人艹b| 99精品欧美一区二区蜜桃免费 | 亚洲专区一二三| 国产经典欧美精品| 5858s免费视频成人| 国产精品福利一区| 秋霞影院一区二区| 在线影视一区二区三区| 国产亚洲欧美中文| 日本va欧美va瓶| 日本韩国欧美三级| 国产精品乱人伦一区二区| 久久精品国产久精国产爱| 欧美伊人精品成人久久综合97| 久久噜噜亚洲综合| 麻豆91精品视频| 欧美久久一二区| 亚洲欧美aⅴ...| 成人福利视频网站| 久久综合精品国产一区二区三区| 亚洲国产毛片aaaaa无费看| av在线不卡免费看| 久久精品网站免费观看| 久久97超碰国产精品超碰| 欧美麻豆精品久久久久久| 一区二区三区在线观看视频| 成人午夜短视频| 久久久久久99久久久精品网站| 蜜臂av日日欢夜夜爽一区| 欧美一区二区三区婷婷月色| 一区二区高清免费观看影视大全| av电影天堂一区二区在线| 久久久久久久久岛国免费| 国产一区二区三区在线观看免费 | 欧美日韩一区二区三区免费看| 中文字幕一区二区三区四区不卡| 国产成人av福利| 中日韩av电影| 成人国产精品免费网站| 国产精品久久久久一区二区三区| 国产精品1024久久|