]> granicus.if.org Git - apache/blob - include/http_config.h
Back out some changes that weren't supposed to be in my last commit.
[apache] / include / http_config.h
1 /* ====================================================================
2  * The Apache Software License, Version 1.1
3  *
4  * Copyright (c) 2000 The Apache Software Foundation.  All rights
5  * reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  *
19  * 3. The end-user documentation included with the redistribution,
20  *    if any, must include the following acknowledgment:
21  *       "This product includes software developed by the
22  *        Apache Software Foundation (http://www.apache.org/)."
23  *    Alternately, this acknowledgment may appear in the software itself,
24  *    if and wherever such third-party acknowledgments normally appear.
25  *
26  * 4. The names "Apache" and "Apache Software Foundation" must
27  *    not be used to endorse or promote products derived from this
28  *    software without prior written permission. For written
29  *    permission, please contact apache@apache.org.
30  *
31  * 5. Products derived from this software may not be called "Apache",
32  *    nor may "Apache" appear in their name, without prior written
33  *    permission of the Apache Software Foundation.
34  *
35  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
36  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
37  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
38  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
39  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
42  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
43  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
44  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
45  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46  * SUCH DAMAGE.
47  * ====================================================================
48  *
49  * This software consists of voluntary contributions made by many
50  * individuals on behalf of the Apache Software Foundation.  For more
51  * information on the Apache Software Foundation, please see
52  * <http://www.apache.org/>.
53  *
54  * Portions of this software are based upon public domain software
55  * originally written at the National Center for Supercomputing Applications,
56  * University of Illinois, Urbana-Champaign.
57  */
58
59 #ifndef APACHE_HTTP_CONFIG_H
60 #define APACHE_HTTP_CONFIG_H
61
62 #include "ap_hooks.h"
63 #include "util_cfgtree.h"
64
65 #ifdef __cplusplus
66 extern "C" {
67 #endif
68
69 /*
70  * The central data structures around here...
71  */
72
73 /* Command dispatch structures... */
74
75 /* Note that for all of these except RAW_ARGS, the config routine is
76  * passed a freshly allocated string which can be modified or stored
77  * or whatever... it's only necessary to do pstrdup() stuff with
78  * RAW_ARGS.
79  */
80 enum cmd_how {
81     RAW_ARGS,                   /* cmd_func parses command line itself */
82     TAKE1,                      /* one argument only */
83     TAKE2,                      /* two arguments only */
84     ITERATE,                    /* one argument, occuring multiple times
85                                  * (e.g., IndexIgnore)
86                                  */
87     ITERATE2,                   /* two arguments, 2nd occurs multiple times
88                                  * (e.g., AddIcon)
89                                  */
90     FLAG,                       /* One of 'On' or 'Off' */
91     NO_ARGS,                    /* No args at all, e.g. </Directory> */
92     TAKE12,                     /* one or two arguments */
93     TAKE3,                      /* three arguments only */
94     TAKE23,                     /* two or three arguments */
95     TAKE123,                    /* one, two or three arguments */
96     TAKE13                      /* one or three arguments */
97 };
98
99 typedef struct cmd_parms_struct cmd_parms;
100
101 #ifdef AP_DEBUG
102
103 typedef union {
104     const char *(*no_args) (cmd_parms *parms, void *mconfig);
105     const char *(*raw_args) (cmd_parms *parms, void *mconfig,
106                              const char *args);
107     const char *(*take1) (cmd_parms *parms, void *mconfig, const char *w);
108     const char *(*take2) (cmd_parms *parms, void *mconfig, const char *w,
109                           const char *w2);
110     const char *(*take3) (cmd_parms *parms, void *mconfig, const char *w,
111                           const char *w2, const char *w3);
112     const char *(*flag) (cmd_parms *parms, void *mconfig, int on);
113 } cmd_func;
114
115 # define AP_NO_ARGS     func.no_args
116 # define AP_RAW_ARGS    func.raw_args
117 # define AP_TAKE1       func.take1
118 # define AP_TAKE2       func.take2
119 # define AP_TAKE3       func.take3
120 # define AP_FLAG        func.flag
121
122 # define AP_INIT_NO_ARGS(directive, func, mconfig, where, help) \
123     { directive, { .no_args=func }, mconfig, where, RAW_ARGS, help }
124 # define AP_INIT_RAW_ARGS(directive, func, mconfig, where, help) \
125     { directive, { .raw_args=func }, mconfig, where, RAW_ARGS, help }
126 # define AP_INIT_TAKE1(directive, func, mconfig, where, help) \
127     { directive, { .take1=func }, mconfig, where, TAKE1, help }
128 # define AP_INIT_ITERATE(directive, func, mconfig, where, help) \
129     { directive, { .take1=func }, mconfig, where, ITERATE, help }
130 # define AP_INIT_TAKE2(directive, func, mconfig, where, help) \
131     { directive, { .take2=func }, mconfig, where, TAKE2, help }
132 # define AP_INIT_TAKE12(directive, func, mconfig, where, help) \
133     { directive, { .take2=func }, mconfig, where, TAKE12, help }
134 # define AP_INIT_ITERATE2(directive, func, mconfig, where, help) \
135     { directive, { .take2=func }, mconfig, where, ITERATE2, help }
136 # define AP_INIT_TAKE23(directive, func, mconfig, where, help) \
137     { directive, { .take3=func }, mconfig, where, TAKE23, help }
138 # define AP_INIT_FLAG(directive, func, mconfig, where, help) \
139     { directive, { .flag=func }, mconfig, where, FLAG, help }
140
141 #else
142
143 typedef const char *(*cmd_func) ();
144
145 # define AP_NO_ARGS  func
146 # define AP_RAW_ARGS func
147 # define AP_TAKE1    func
148 # define AP_TAKE2    func
149 # define AP_TAKE3    func
150 # define AP_FLAG     func
151
152 # define AP_INIT_NO_ARGS(directive, func, mconfig, where, help) \
153     { directive, func, mconfig, where, RAW_ARGS, help }
154 # define AP_INIT_RAW_ARGS(directive, func, mconfig, where, help) \
155     { directive, func, mconfig, where, RAW_ARGS, help }
156 # define AP_INIT_TAKE1(directive, func, mconfig, where, help) \
157     { directive, func, mconfig, where, TAKE1, help }
158 # define AP_INIT_ITERATE(directive, func, mconfig, where, help) \
159     { directive, func, mconfig, where, ITERATE, help }
160 # define AP_INIT_TAKE2(directive, func, mconfig, where, help) \
161     { directive, func, mconfig, where, TAKE2, help }
162 # define AP_INIT_TAKE12(directive, func, mconfig, where, help) \
163     { directive, func, mconfig, where, TAKE12, help }
164 # define AP_INIT_ITERATE2(directive, func, mconfig, where, help) \
165     { directive, func, mconfig, where, ITERATE2, help }
166 # define AP_INIT_TAKE23(directive, func, mconfig, where, help) \
167     { directive, func, mconfig, where, TAKE23, help }
168 # define AP_INIT_FLAG(directive, func, mconfig, where, help) \
169     { directive, func, mconfig, where, FLAG, help }
170
171 #endif
172
173 typedef struct command_struct {
174     const char *name;           /* Name of this command */
175     cmd_func func;
176     void *cmd_data;             /* Extra data, for functions which
177                                  * implement multiple commands...
178                                  */
179     int req_override;           /* What overrides need to be allowed to
180                                  * enable this command.
181                                  */
182     enum cmd_how args_how;      /* What the command expects as arguments */
183
184     const char *errmsg;         /* 'usage' message, in case of syntax errors */
185 } command_rec;
186
187 /* The allowed locations for a configuration directive are the union of
188  * those indicated by each set bit in the req_override mask.
189  *
190  * (req_override & RSRC_CONF)   => *.conf outside <Directory> or <Location>
191  * (req_override & ACCESS_CONF) => *.conf inside <Directory> or <Location>
192  * (req_override & OR_AUTHCFG)  => *.conf inside <Directory> or <Location>
193  *                                 and .htaccess when AllowOverride AuthConfig
194  * (req_override & OR_LIMIT)    => *.conf inside <Directory> or <Location>
195  *                                 and .htaccess when AllowOverride Limit
196  * (req_override & OR_OPTIONS)  => *.conf anywhere
197  *                                 and .htaccess when AllowOverride Options
198  * (req_override & OR_FILEINFO) => *.conf anywhere
199  *                                 and .htaccess when AllowOverride FileInfo
200  * (req_override & OR_INDEXES)  => *.conf anywhere
201  *                                 and .htaccess when AllowOverride Indexes
202  */
203 #define OR_NONE 0
204 #define OR_LIMIT 1
205 #define OR_OPTIONS 2
206 #define OR_FILEINFO 4
207 #define OR_AUTHCFG 8
208 #define OR_INDEXES 16
209 #define OR_UNSET 32
210 #define ACCESS_CONF 64
211 #define RSRC_CONF 128
212 #define EXEC_ON_READ 256
213 #define OR_ALL (OR_LIMIT|OR_OPTIONS|OR_FILEINFO|OR_AUTHCFG|OR_INDEXES)
214
215 /* This can be returned by a function if they don't wish to handle
216  * a command. Make it something not likely someone will actually use
217  * as an error code.
218  */
219
220 #define DECLINE_CMD "\a\b"
221
222 /* Common structure for reading of config files / passwd files etc. */
223 typedef struct {
224     int (*getch) (void *param); /* a getc()-like function */
225     void *(*getstr) (void *buf, size_t bufsiz, void *param); /* a fgets()-like function */
226     int (*close) (void *param); /* a close hander function */
227     void *param;                /* the argument passed to getch/getstr/close */
228     const char *name;           /* the filename / description */
229     unsigned line_number;       /* current line number, starting at 1 */
230 } configfile_t;
231
232 /*
233  * This structure is passed to a command which is being invoked,
234  * to carry a large variety of miscellaneous data which is all of
235  * use to *somebody*...
236  */
237
238 struct cmd_parms_struct
239     {
240     void *info;                 /* Argument to command from cmd_table */
241     int override;               /* Which allow-override bits are set */
242     int limited;                /* Which methods are <Limit>ed */
243
244     configfile_t *config_file;  /* Config file structure. */
245     ap_directive_t *directive;  /* the directive specifying this command */
246
247     ap_pool_t *pool;                    /* Pool to allocate new storage in */
248     ap_pool_t *temp_pool;               /* Pool for scratch memory; persists during
249                                  * configuration, but wiped before the first
250                                  * request is served...
251                                  */
252     server_rec *server;         /* Server_rec being configured for */
253     char *path;                 /* If configuring for a directory,
254                                  * pathname of that directory.
255                                  * NOPE!  That's what it meant previous to the
256                                  * existance of <Files>, <Location> and regex
257                                  * matching.  Now the only usefulness that can
258                                  * be derived from this field is whether a command
259                                  * is being called in a server context (path == NULL)
260                                  * or being called in a dir context (path != NULL).
261                                  */
262     const command_rec *cmd;     /* configuration command */
263
264     void *context;              /* per_dir_config vector passed 
265                                  * to handle_command */
266     const ap_directive_t *err_directive; /* directive with syntax error */
267
268 };
269
270 /* This structure records the existence of handlers in a module... */
271
272 typedef struct {
273     const char *content_type;   /* MUST be all lower case */
274     int (*handler) (request_rec *);
275 } handler_rec;
276
277 /*
278  * Module structures.  Just about everything is dispatched through
279  * these, directly or indirectly (through the command and handler
280  * tables).
281  */
282
283 typedef struct module_struct {
284     int version;                /* API version, *not* module version;
285                                  * check that module is compatible with this
286                                  * version of the server.
287                                  */
288     int minor_version;          /* API minor version. Provides API feature
289                                  * milestones. Not checked during module init
290                                  */
291     int module_index;           /* Index to this modules structures in
292                                  * config vectors.
293                                  */
294
295     const char *name;
296     void *dynamic_load_handle;
297
298     struct module_struct *next;
299
300     unsigned long magic;        /* Magic Cookie to identify a module structure;
301                                  * It's mainly important for the DSO facility
302                                  * (see also mod_so).
303                                  */
304     void (*rewrite_args) (process_rec *process);
305     void *(*create_dir_config) (ap_pool_t *p, char *dir);
306     void *(*merge_dir_config) (ap_pool_t *p, void *base_conf, void *new_conf);
307     void *(*create_server_config) (ap_pool_t *p, server_rec *s);
308     void *(*merge_server_config) (ap_pool_t *p, void *base_conf, void *new_conf);
309
310     const command_rec *cmds;
311     const handler_rec *handlers;
312
313     /* Hooks for getting into the middle of server ops...
314
315      * translate_handler --- translate URI to filename
316      * access_checker --- check access by host address, etc.   All of these
317      *                    run; if all decline, that's still OK.
318      * check_user_id --- get and validate user id from the HTTP request
319      * auth_checker --- see if the user (from check_user_id) is OK *here*.
320      *                  If all of *these* decline, the request is rejected
321      *                  (as a HTTP_INTERNAL_SERVER_ERROR, since the module
322      *                  which was suppsoed to handle this was configured
323      *                  wrong).
324      * type_checker --- Determine MIME type of the requested entity;
325      *                  sets content_type, _encoding and _language fields.
326      */
327
328     void (*register_hooks) (void);
329 } module;
330
331 /* Initializer for the first few module slots, which are only
332  * really set up once we start running.  Note that the first two slots
333  * provide a version check; this should allow us to deal with changes to
334  * the API. The major number should reflect changes to the API handler table
335  * itself or removal of functionality. The minor number should reflect
336  * additions of functionality to the existing API. (the server can detect
337  * an old-format module, and either handle it back-compatibly, or at least
338  * signal an error). See src/include/ap_mmn.h for MMN version history.
339  */
340
341 #define STANDARD_MODULE_STUFF   this_module_needs_to_be_ported_to_apache_2_0
342
343 #define STANDARD20_MODULE_STUFF MODULE_MAGIC_NUMBER_MAJOR, \
344                                 MODULE_MAGIC_NUMBER_MINOR, \
345                                 -1, \
346                                 __FILE__, \
347                                 NULL, \
348                                 NULL, \
349                                 MODULE_MAGIC_COOKIE, \
350                                 NULL      /* rewrite args spot */
351
352 #define MPM20_MODULE_STUFF      MODULE_MAGIC_NUMBER_MAJOR, \
353                                 MODULE_MAGIC_NUMBER_MINOR, \
354                                 -1, \
355                                 __FILE__, \
356                                 NULL, \
357                                 NULL, \
358                                 MODULE_MAGIC_COOKIE
359
360 /* Generic accessors for other modules to get at their own module-specific
361  * data
362  */
363
364 API_EXPORT(void *) ap_get_module_config(void *conf_vector, module *m);
365 API_EXPORT(void) ap_set_module_config(void *conf_vector, module *m, void *val);
366
367 #define ap_get_module_config(v,m)       \
368     (((void **)(v))[(m)->module_index])
369 #define ap_set_module_config(v,m,val)   \
370     ((((void **)(v))[(m)->module_index]) = (val))
371
372 /* Generic command handling function... */
373
374 API_EXPORT_NONSTD(const char *) ap_set_string_slot(cmd_parms *, void *,
375                                                    const char *);
376 API_EXPORT_NONSTD(const char *) ap_set_string_slot_lower(cmd_parms *, 
377                                                          void *, const char *);
378 API_EXPORT_NONSTD(const char *) ap_set_flag_slot(cmd_parms *, void *, int);
379 API_EXPORT_NONSTD(const char *) ap_set_file_slot(cmd_parms *, char *, const char *);
380
381 /* For modules which need to read config files, open logs, etc. ...
382  * this returns the fname argument if it begins with '/'; otherwise
383  * it relativizes it wrt server_root.
384  */
385
386 API_EXPORT(const char *) ap_server_root_relative(ap_pool_t *p, const char *fname);
387
388 /* Finally, the hook for dynamically loading modules in... */
389
390 API_EXPORT(void) ap_add_module(module *m);
391 API_EXPORT(void) ap_remove_module(module *m);
392 API_EXPORT(void) ap_add_loaded_module(module *mod);
393 API_EXPORT(void) ap_remove_loaded_module(module *mod);
394 API_EXPORT(int) ap_add_named_module(const char *name);
395 API_EXPORT(void) ap_clear_module_list(void);
396 API_EXPORT(const char *) ap_find_module_name(module *m);
397 API_EXPORT(module *) ap_find_linked_module(const char *name);
398
399 /* Open a configfile_t as FILE, return open configfile_t struct pointer */
400 API_EXPORT(ap_status_t) ap_pcfg_openfile(configfile_t **, ap_pool_t *p, const char *name);
401
402 /* Allocate a configfile_t handle with user defined functions and params */
403 API_EXPORT(configfile_t *) ap_pcfg_open_custom(ap_pool_t *p, const char *descr,
404     void *param,
405     int(*getc_func)(void*),
406     void *(*gets_func) (void *buf, size_t bufsiz, void *param),
407     int(*close_func)(void *param));
408
409 /* Read one line from open configfile_t, strip LF, increase line number */
410 API_EXPORT(int) ap_cfg_getline(char *buf, size_t bufsize, configfile_t *cfp);
411
412 /* Read one char from open configfile_t, increase line number upon LF */
413 API_EXPORT(int) ap_cfg_getc(configfile_t *cfp);
414
415 /* Detach from open configfile_t, calling the close handler */
416 API_EXPORT(int) ap_cfg_closefile(configfile_t *cfp);
417
418 /* for implementing subconfigs and customized config files */
419 API_EXPORT(const char *) ap_soak_end_container(cmd_parms *cmd, char *directive);
420 const char * ap_build_cont_config(ap_pool_t *p, ap_pool_t *temp_pool,
421                                         cmd_parms *parms,
422                                         ap_directive_t **current,
423                                         ap_directive_t **curr_parent,
424                                         char *orig_directive);
425 API_EXPORT(const char *) ap_build_config(cmd_parms *parms,
426                                          ap_pool_t *conf_pool,
427                                          ap_pool_t *temp_pool,
428                                          ap_directive_t **conftree);
429 API_EXPORT(const char *) ap_walk_config(ap_directive_t *conftree,
430                                         cmd_parms *parms, void *config);
431
432 /* ap_check_cmd_context() definitions: */
433 API_EXPORT(const char *) ap_check_cmd_context(cmd_parms *cmd, unsigned forbidden);
434
435 /* ap_check_cmd_context():              Forbidden in: */
436 #define  NOT_IN_VIRTUALHOST     0x01 /* <Virtualhost> */
437 #define  NOT_IN_LIMIT           0x02 /* <Limit> */
438 #define  NOT_IN_DIRECTORY       0x04 /* <Directory> */
439 #define  NOT_IN_LOCATION        0x08 /* <Location> */
440 #define  NOT_IN_FILES           0x10 /* <Files> */
441 #define  NOT_IN_DIR_LOC_FILE    (NOT_IN_DIRECTORY|NOT_IN_LOCATION|NOT_IN_FILES) /* <Directory>/<Location>/<Files>*/
442 #define  GLOBAL_ONLY            (NOT_IN_VIRTUALHOST|NOT_IN_LIMIT|NOT_IN_DIR_LOC_FILE)
443
444
445 #ifdef CORE_PRIVATE
446
447 extern API_VAR_EXPORT module *top_module;
448
449 extern API_VAR_EXPORT module *ap_prelinked_modules[];
450 extern API_VAR_EXPORT module *ap_preloaded_modules[];
451 extern API_VAR_EXPORT module **ap_loaded_modules;
452
453 /* For mod_so.c... */
454
455 void ap_single_module_configure(ap_pool_t *p, server_rec *s, module *m);
456
457 /* For http_main.c... */
458
459 API_EXPORT(void) ap_setup_prelinked_modules(process_rec *process);
460 API_EXPORT(void) ap_show_directives(void);
461 API_EXPORT(void) ap_show_modules(void);
462 API_EXPORT(server_rec*) ap_read_config(process_rec *process, ap_pool_t *temp_pool, const char *config_name, ap_directive_t **conftree);
463 API_EXPORT(void) ap_pre_config_hook(ap_pool_t *pconf, ap_pool_t *plog, ap_pool_t *ptemp, server_rec *s);
464 API_EXPORT(void) ap_post_config_hook(ap_pool_t *pconf, ap_pool_t *plog, ap_pool_t *ptemp, server_rec *s);
465 API_EXPORT(void) ap_run_rewrite_args(process_rec *process);
466 API_EXPORT(void) ap_register_hooks(module *m);
467 API_EXPORT(void) ap_fixup_virtual_hosts(ap_pool_t *p, server_rec *main_server);
468
469 /* For http_request.c... */
470
471 void *ap_create_request_config(ap_pool_t *p);
472 CORE_EXPORT(void *) ap_create_per_dir_config(ap_pool_t *p);
473 void *ap_merge_per_dir_configs(ap_pool_t *p, void *base, void *new);
474
475 /* For http_connection.c... */
476
477 void *ap_create_conn_config(ap_pool_t *p);
478
479 /* For http_core.c... (<Directory> command and virtual hosts) */
480
481 int ap_parse_htaccess(void **result, request_rec *r, int override,
482                 const char *path, const char *access_name);
483
484 CORE_EXPORT(const char *) ap_init_virtual_host(ap_pool_t *p, const char *hostname,
485                                 server_rec *main_server, server_rec **);
486 void ap_process_resource_config(server_rec *s, const char *fname, 
487                  ap_directive_t **conftree, ap_pool_t *p, ap_pool_t *ptemp);
488 API_EXPORT(void) ap_process_config_tree(server_rec *s, ap_directive_t *conftree,
489                                         ap_pool_t *p, ap_pool_t *ptemp);
490
491
492 /* For individual MPMs... */
493
494 void ap_child_init_hook(ap_pool_t *pchild, server_rec *s);
495
496 /* Module-method dispatchers, also for http_request.c */
497
498 int ap_translate_name(request_rec *);
499 int ap_check_user_id(request_rec *);    /* obtain valid username from client auth */
500 int ap_invoke_handler(request_rec *);
501
502 /* for mod_perl */
503
504 CORE_EXPORT(const command_rec *) ap_find_command(const char *name, const command_rec *cmds);
505 CORE_EXPORT(const command_rec *) ap_find_command_in_modules(const char *cmd_name, module **mod);
506 CORE_EXPORT(void *) ap_set_config_vectors(cmd_parms *parms, void *config, module *mod);
507 CORE_EXPORT(const char *) ap_handle_command(cmd_parms *parms, void *config, const char *l);
508
509 #endif
510
511   /* Hooks */
512 AP_DECLARE_HOOK(int,header_parser,(request_rec *))
513 AP_DECLARE_HOOK(void,pre_config,
514              (ap_pool_t *pconf,ap_pool_t *plog,ap_pool_t *ptemp))
515 AP_DECLARE_HOOK(void,post_config,
516              (ap_pool_t *pconf,ap_pool_t *plog,ap_pool_t *ptemp,server_rec *s))
517 AP_DECLARE_HOOK(void,open_logs,
518              (ap_pool_t *pconf,ap_pool_t *plog,ap_pool_t *ptemp,server_rec *s))
519 AP_DECLARE_HOOK(void,child_init,(ap_pool_t *pchild, server_rec *s))
520
521 #ifdef __cplusplus
522 }
523 #endif
524
525 #endif  /* !APACHE_HTTP_CONFIG_H */