]> granicus.if.org Git - apache/blob - include/httpd.h
remove OS/2 platform support
[apache] / include / httpd.h
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements.  See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License.  You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * @file httpd.h
19  * @brief HTTP Daemon routines
20  *
21  * @defgroup APACHE Apache
22  *
23  * Top level group of which all other groups are a member
24  * @{
25  *
26  * @defgroup APACHE_MODS Apache Modules
27  *           Top level group for Apache Modules
28  * @defgroup APACHE_OS Operating System Specific
29  * @defgroup APACHE_CORE Apache Core
30  * @{
31  * @defgroup APACHE_CORE_DAEMON HTTP Daemon Routine
32  * @{
33  */
34
35 #ifndef APACHE_HTTPD_H
36 #define APACHE_HTTPD_H
37
38 /* XXX - We need to push more stuff to other .h files, or even .c files, to
39  * make this file smaller
40  */
41
42 /* Headers in which EVERYONE has an interest... */
43 #include "ap_config.h"
44 #include "ap_mmn.h"
45
46 #include "ap_release.h"
47
48 #include "apr.h"
49 #include "apr_general.h"
50 #include "apr_tables.h"
51 #include "apr_pools.h"
52 #include "apr_time.h"
53 #include "apr_network_io.h"
54 #include "apr_buckets.h"
55 #include "apr_poll.h"
56 #include "apr_thread_proc.h"
57
58 #include "os.h"
59
60 #include "ap_regex.h"
61
62 #if APR_HAVE_STDLIB_H
63 #include <stdlib.h>
64 #endif
65
66 /* Note: apr_uri.h is also included, see below */
67
68 #ifdef __cplusplus
69 extern "C" {
70 #endif
71
72 /* ----------------------------- config dir ------------------------------ */
73
74 /** Define this to be the default server home dir. Most things later in this
75  * file with a relative pathname will have this added.
76  */
77 #ifndef HTTPD_ROOT
78 #if defined(WIN32)
79 /** Set default for Windows file system */
80 #define HTTPD_ROOT "/apache"
81 #elif defined (NETWARE)
82 /** Set the default for NetWare */
83 #define HTTPD_ROOT "/apache"
84 #else
85 /** Set for all other OSs */
86 #define HTTPD_ROOT "/usr/local/apache"
87 #endif
88 #endif /* HTTPD_ROOT */
89
90 /* 
91  * --------- You shouldn't have to edit anything below this line ----------
92  *
93  * Any modifications to any defaults not defined above should be done in the 
94  * respective configuration file. 
95  *
96  */
97
98 /** 
99  * Default location of documents.  Can be overridden by the DocumentRoot
100  * directive.
101  */
102 #ifndef DOCUMENT_LOCATION
103 #define DOCUMENT_LOCATION  HTTPD_ROOT "/htdocs"
104 #endif /* DOCUMENT_LOCATION */
105
106 /** Maximum number of dynamically loaded modules */
107 #ifndef DYNAMIC_MODULE_LIMIT
108 #define DYNAMIC_MODULE_LIMIT 128
109 #endif
110
111 /** Default administrator's address */
112 #define DEFAULT_ADMIN "[no address given]"
113
114 /** The name of the log files */
115 #ifndef DEFAULT_ERRORLOG
116 #if defined(WIN32)
117 #define DEFAULT_ERRORLOG "logs/error.log"
118 #else
119 #define DEFAULT_ERRORLOG "logs/error_log"
120 #endif
121 #endif /* DEFAULT_ERRORLOG */
122
123 /** Define this to be what your per-directory security files are called */
124 #ifndef DEFAULT_ACCESS_FNAME
125 #define DEFAULT_ACCESS_FNAME ".htaccess"
126 #endif /* DEFAULT_ACCESS_FNAME */
127
128 /** The name of the server config file */
129 #ifndef SERVER_CONFIG_FILE
130 #define SERVER_CONFIG_FILE "conf/httpd.conf"
131 #endif
132
133 /** The default path for CGI scripts if none is currently set */
134 #ifndef DEFAULT_PATH
135 #define DEFAULT_PATH "/bin:/usr/bin:/usr/ucb:/usr/bsd:/usr/local/bin"
136 #endif
137
138 /** The path to the suExec wrapper, can be overridden in Configuration */
139 #ifndef SUEXEC_BIN
140 #define SUEXEC_BIN  HTTPD_ROOT "/bin/suexec"
141 #endif
142
143 /** The timeout for waiting for messages */
144 #ifndef DEFAULT_TIMEOUT
145 #define DEFAULT_TIMEOUT 300 
146 #endif
147
148 /** The timeout for waiting for keepalive timeout until next request */
149 #ifndef DEFAULT_KEEPALIVE_TIMEOUT
150 #define DEFAULT_KEEPALIVE_TIMEOUT 5
151 #endif
152
153 /** The number of requests to entertain per connection */
154 #ifndef DEFAULT_KEEPALIVE
155 #define DEFAULT_KEEPALIVE 100
156 #endif
157
158 /*
159  * Limits on the size of various request items.  These limits primarily
160  * exist to prevent simple denial-of-service attacks on a server based
161  * on misuse of the protocol.  The recommended values will depend on the
162  * nature of the server resources -- CGI scripts and database backends
163  * might require large values, but most servers could get by with much
164  * smaller limits than we use below.  The request message body size can
165  * be limited by the per-dir config directive LimitRequestBody.
166  *
167  * Internal buffer sizes are two bytes more than the DEFAULT_LIMIT_REQUEST_LINE
168  * and DEFAULT_LIMIT_REQUEST_FIELDSIZE below, which explains the 8190.
169  * These two limits can be lowered (but not raised) by the server config
170  * directives LimitRequestLine and LimitRequestFieldsize, respectively.
171  *
172  * DEFAULT_LIMIT_REQUEST_FIELDS can be modified or disabled (set = 0) by
173  * the server config directive LimitRequestFields.
174  */
175
176 /** default limit on bytes in Request-Line (Method+URI+HTTP-version) */
177 #ifndef DEFAULT_LIMIT_REQUEST_LINE
178 #define DEFAULT_LIMIT_REQUEST_LINE 8190
179 #endif 
180 /** default limit on bytes in any one header field  */
181 #ifndef DEFAULT_LIMIT_REQUEST_FIELDSIZE
182 #define DEFAULT_LIMIT_REQUEST_FIELDSIZE 8190
183 #endif 
184 /** default limit on number of request header fields */
185 #ifndef DEFAULT_LIMIT_REQUEST_FIELDS
186 #define DEFAULT_LIMIT_REQUEST_FIELDS 100
187 #endif 
188
189 /**
190  * The default default character set name to add if AddDefaultCharset is
191  * enabled.  Overridden with AddDefaultCharsetName.
192  */
193 #define DEFAULT_ADD_DEFAULT_CHARSET_NAME "iso-8859-1"
194
195 /** default HTTP Server protocol */
196 #define AP_SERVER_PROTOCOL "HTTP/1.1"
197
198
199 /* ------------------ stuff that modules are allowed to look at ----------- */
200
201 /** Define this to be what your HTML directory content files are called */
202 #ifndef AP_DEFAULT_INDEX
203 #define AP_DEFAULT_INDEX "index.html"
204 #endif
205
206 /** The name of the MIME types file */
207 #ifndef AP_TYPES_CONFIG_FILE
208 #define AP_TYPES_CONFIG_FILE "conf/mime.types"
209 #endif
210
211 /*
212  * Define the HTML doctype strings centrally.
213  */
214 /** HTML 2.0 Doctype */
215 #define DOCTYPE_HTML_2_0  "<!DOCTYPE HTML PUBLIC \"-//IETF//" \
216                           "DTD HTML 2.0//EN\">\n"
217 /** HTML 3.2 Doctype */
218 #define DOCTYPE_HTML_3_2  "<!DOCTYPE HTML PUBLIC \"-//W3C//" \
219                           "DTD HTML 3.2 Final//EN\">\n"
220 /** HTML 4.0 Strict Doctype */
221 #define DOCTYPE_HTML_4_0S "<!DOCTYPE HTML PUBLIC \"-//W3C//" \
222                           "DTD HTML 4.0//EN\"\n" \
223                           "\"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
224 /** HTML 4.0 Transitional Doctype */
225 #define DOCTYPE_HTML_4_0T "<!DOCTYPE HTML PUBLIC \"-//W3C//" \
226                           "DTD HTML 4.0 Transitional//EN\"\n" \
227                           "\"http://www.w3.org/TR/REC-html40/loose.dtd\">\n"
228 /** HTML 4.0 Frameset Doctype */
229 #define DOCTYPE_HTML_4_0F "<!DOCTYPE HTML PUBLIC \"-//W3C//" \
230                           "DTD HTML 4.0 Frameset//EN\"\n" \
231                           "\"http://www.w3.org/TR/REC-html40/frameset.dtd\">\n"
232 /** XHTML 1.0 Strict Doctype */
233 #define DOCTYPE_XHTML_1_0S "<!DOCTYPE html PUBLIC \"-//W3C//" \
234                            "DTD XHTML 1.0 Strict//EN\"\n" \
235                            "\"http://www.w3.org/TR/xhtml1/DTD/" \
236                            "xhtml1-strict.dtd\">\n"
237 /** XHTML 1.0 Transitional Doctype */
238 #define DOCTYPE_XHTML_1_0T "<!DOCTYPE html PUBLIC \"-//W3C//" \
239                            "DTD XHTML 1.0 Transitional//EN\"\n" \
240                            "\"http://www.w3.org/TR/xhtml1/DTD/" \
241                            "xhtml1-transitional.dtd\">\n"
242 /** XHTML 1.0 Frameset Doctype */
243 #define DOCTYPE_XHTML_1_0F "<!DOCTYPE html PUBLIC \"-//W3C//" \
244                            "DTD XHTML 1.0 Frameset//EN\"\n" \
245                            "\"http://www.w3.org/TR/xhtml1/DTD/" \
246                            "xhtml1-frameset.dtd\">"
247
248 /** Internal representation for a HTTP protocol number, e.g., HTTP/1.1 */
249 #define HTTP_VERSION(major,minor) (1000*(major)+(minor))
250 /** Major part of HTTP protocol */
251 #define HTTP_VERSION_MAJOR(number) ((number)/1000)
252 /** Minor part of HTTP protocol */
253 #define HTTP_VERSION_MINOR(number) ((number)%1000)
254
255 /* -------------- Port number for server running standalone --------------- */
256
257 /** default HTTP Port */
258 #define DEFAULT_HTTP_PORT       80
259 /** default HTTPS Port */
260 #define DEFAULT_HTTPS_PORT      443
261 /**
262  * Check whether @a port is the default port for the request @a r.
263  * @param port The port number
264  * @param r The request
265  * @see #ap_default_port
266  */
267 #define ap_is_default_port(port,r)      ((port) == ap_default_port(r))
268 /**
269  * Get the default port for a request (which depends on the scheme).
270  * @param r The request
271  */
272 #define ap_default_port(r)      ap_run_default_port(r)
273 /**
274  * Get the scheme for a request.
275  * @param r The request
276  */
277 #define ap_http_scheme(r)       ap_run_http_scheme(r)
278
279 /** The default string length */
280 #define MAX_STRING_LEN HUGE_STRING_LEN
281
282 /** The length of a Huge string */
283 #define HUGE_STRING_LEN 8192
284
285 /** The size of the server's internal read-write buffers */
286 #define AP_IOBUFSIZE 8192
287
288 /** The max number of regex captures that can be expanded by ap_pregsub */
289 #define AP_MAX_REG_MATCH 10
290
291 /**
292  * APR_HAS_LARGE_FILES introduces the problem of spliting sendfile into 
293  * mutiple buckets, no greater than MAX(apr_size_t), and more granular 
294  * than that in case the brigade code/filters attempt to read it directly.
295  * ### 16mb is an invention, no idea if it is reasonable.
296  */
297 #define AP_MAX_SENDFILE 16777216  /* 2^24 */
298
299 /**
300  * Special Apache error codes. These are basically used
301  *  in http_main.c so we can keep track of various errors.
302  *        
303  */
304 /** a normal exit */
305 #define APEXIT_OK               0x0
306 /** A fatal error arising during the server's init sequence */
307 #define APEXIT_INIT             0x2
308 /**  The child died during its init sequence */
309 #define APEXIT_CHILDINIT        0x3
310 /**  
311  *   The child exited due to a resource shortage.
312  *   The parent should limit the rate of forking until
313  *   the situation is resolved.
314  */
315 #define APEXIT_CHILDSICK        0x7
316 /** 
317  *     A fatal error, resulting in the whole server aborting.
318  *     If a child exits with this error, the parent process
319  *     considers this a server-wide fatal error and aborts.
320  */
321 #define APEXIT_CHILDFATAL       0xf
322
323 #ifndef AP_DECLARE
324 /**
325  * Stuff marked #AP_DECLARE is part of the API, and intended for use
326  * by modules. Its purpose is to allow us to add attributes that
327  * particular platforms or compilers require to every exported function.
328  */
329 # define AP_DECLARE(type)    type
330 #endif
331
332 #ifndef AP_DECLARE_NONSTD
333 /**
334  * Stuff marked #AP_DECLARE_NONSTD is part of the API, and intended for
335  * use by modules.  The difference between #AP_DECLARE and
336  * #AP_DECLARE_NONSTD is that the latter is required for any functions
337  * which use varargs or are used via indirect function call.  This
338  * is to accomodate the two calling conventions in windows dlls.
339  */
340 # define AP_DECLARE_NONSTD(type)    type
341 #endif
342 #ifndef AP_DECLARE_DATA
343 # define AP_DECLARE_DATA
344 #endif
345
346 #ifndef AP_MODULE_DECLARE
347 # define AP_MODULE_DECLARE(type)    type
348 #endif
349 #ifndef AP_MODULE_DECLARE_NONSTD
350 # define AP_MODULE_DECLARE_NONSTD(type)  type
351 #endif
352 #ifndef AP_MODULE_DECLARE_DATA
353 # define AP_MODULE_DECLARE_DATA
354 #endif
355
356 /**
357  * @internal
358  * modules should not use functions marked AP_CORE_DECLARE
359  */
360 #ifndef AP_CORE_DECLARE
361 # define AP_CORE_DECLARE        AP_DECLARE
362 #endif
363
364 /**
365  * @internal
366  * modules should not use functions marked AP_CORE_DECLARE_NONSTD
367  */
368
369 #ifndef AP_CORE_DECLARE_NONSTD
370 # define AP_CORE_DECLARE_NONSTD AP_DECLARE_NONSTD
371 #endif
372
373 /** 
374  * @brief The numeric version information is broken out into fields within this 
375  * structure. 
376  */
377 typedef struct {
378     int major;              /**< major number */
379     int minor;              /**< minor number */
380     int patch;              /**< patch number */
381     const char *add_string; /**< additional string like "-dev" */
382 } ap_version_t;
383
384 /**
385  * Return httpd's version information in a numeric form.
386  *
387  *  @param version Pointer to a version structure for returning the version
388  *                 information.
389  */
390 AP_DECLARE(void) ap_get_server_revision(ap_version_t *version);
391
392 /**
393  * Get the server banner in a form suitable for sending over the
394  * network, with the level of information controlled by the
395  * ServerTokens directive.
396  * @return The server banner
397  */
398 AP_DECLARE(const char *) ap_get_server_banner(void);
399
400 /**
401  * Get the server description in a form suitable for local displays,
402  * status reports, or logging.  This includes the detailed server
403  * version and information about some modules.  It is not affected
404  * by the ServerTokens directive.
405  * @return The server description
406  */
407 AP_DECLARE(const char *) ap_get_server_description(void);
408
409 /**
410  * Add a component to the server description and banner strings
411  * @param pconf The pool to allocate the component from
412  * @param component The string to add
413  */
414 AP_DECLARE(void) ap_add_version_component(apr_pool_t *pconf, const char *component);
415
416 /**
417  * Get the date a time that the server was built
418  * @return The server build time string
419  */
420 AP_DECLARE(const char *) ap_get_server_built(void);
421
422 /* non-HTTP status codes retuned by hooks */
423
424 #define OK 0                    /**< Module has handled this stage. */
425 #define DECLINED -1             /**< Module declines to handle */
426 #define DONE -2                 /**< Module has served the response completely 
427                                  *  - it's safe to die() with no more output
428                                  */
429 #define SUSPENDED -3 /**< Module will handle the remainder of the request. 
430                       * The core will never invoke the request again, */
431
432 /** Returned by the bottom-most filter if no data was written.
433  *  @see ap_pass_brigade(). */
434 #define AP_NOBODY_WROTE         -100
435 /** Returned by the bottom-most filter if no data was read.
436  *  @see ap_get_brigade(). */
437 #define AP_NOBODY_READ          -101
438 /** Returned by any filter if the filter chain encounters an error
439  *  and has already dealt with the error response.
440  */
441 #define AP_FILTER_ERROR         -102
442
443 /**
444  * @defgroup HTTP_Status HTTP Status Codes
445  * @{
446  */
447 /**
448  * The size of the static array in http_protocol.c for storing
449  * all of the potential response status-lines (a sparse table).
450  * A future version should dynamically generate the apr_table_t at startup.
451  */
452 #define RESPONSE_CODES 57
453
454 #define HTTP_CONTINUE                      100
455 #define HTTP_SWITCHING_PROTOCOLS           101
456 #define HTTP_PROCESSING                    102
457 #define HTTP_OK                            200
458 #define HTTP_CREATED                       201
459 #define HTTP_ACCEPTED                      202
460 #define HTTP_NON_AUTHORITATIVE             203
461 #define HTTP_NO_CONTENT                    204
462 #define HTTP_RESET_CONTENT                 205
463 #define HTTP_PARTIAL_CONTENT               206
464 #define HTTP_MULTI_STATUS                  207
465 #define HTTP_MULTIPLE_CHOICES              300
466 #define HTTP_MOVED_PERMANENTLY             301
467 #define HTTP_MOVED_TEMPORARILY             302
468 #define HTTP_SEE_OTHER                     303
469 #define HTTP_NOT_MODIFIED                  304
470 #define HTTP_USE_PROXY                     305
471 #define HTTP_TEMPORARY_REDIRECT            307
472 #define HTTP_BAD_REQUEST                   400
473 #define HTTP_UNAUTHORIZED                  401
474 #define HTTP_PAYMENT_REQUIRED              402
475 #define HTTP_FORBIDDEN                     403
476 #define HTTP_NOT_FOUND                     404
477 #define HTTP_METHOD_NOT_ALLOWED            405
478 #define HTTP_NOT_ACCEPTABLE                406
479 #define HTTP_PROXY_AUTHENTICATION_REQUIRED 407
480 #define HTTP_REQUEST_TIME_OUT              408
481 #define HTTP_CONFLICT                      409
482 #define HTTP_GONE                          410
483 #define HTTP_LENGTH_REQUIRED               411
484 #define HTTP_PRECONDITION_FAILED           412
485 #define HTTP_REQUEST_ENTITY_TOO_LARGE      413
486 #define HTTP_REQUEST_URI_TOO_LARGE         414
487 #define HTTP_UNSUPPORTED_MEDIA_TYPE        415
488 #define HTTP_RANGE_NOT_SATISFIABLE         416
489 #define HTTP_EXPECTATION_FAILED            417
490 #define HTTP_UNPROCESSABLE_ENTITY          422
491 #define HTTP_LOCKED                        423
492 #define HTTP_FAILED_DEPENDENCY             424
493 #define HTTP_UPGRADE_REQUIRED              426
494 #define HTTP_INTERNAL_SERVER_ERROR         500
495 #define HTTP_NOT_IMPLEMENTED               501
496 #define HTTP_BAD_GATEWAY                   502
497 #define HTTP_SERVICE_UNAVAILABLE           503
498 #define HTTP_GATEWAY_TIME_OUT              504
499 #define HTTP_VERSION_NOT_SUPPORTED         505
500 #define HTTP_VARIANT_ALSO_VARIES           506
501 #define HTTP_INSUFFICIENT_STORAGE          507
502 #define HTTP_NOT_EXTENDED                  510
503
504 /** is the status code informational */
505 #define ap_is_HTTP_INFO(x)         (((x) >= 100)&&((x) < 200))
506 /** is the status code OK ?*/
507 #define ap_is_HTTP_SUCCESS(x)      (((x) >= 200)&&((x) < 300))
508 /** is the status code a redirect */
509 #define ap_is_HTTP_REDIRECT(x)     (((x) >= 300)&&((x) < 400))
510 /** is the status code a error (client or server) */
511 #define ap_is_HTTP_ERROR(x)        (((x) >= 400)&&((x) < 600))
512 /** is the status code a client error  */
513 #define ap_is_HTTP_CLIENT_ERROR(x) (((x) >= 400)&&((x) < 500))
514 /** is the status code a server error  */
515 #define ap_is_HTTP_SERVER_ERROR(x) (((x) >= 500)&&((x) < 600))
516 /** is the status code a (potentially) valid response code?  */
517 #define ap_is_HTTP_VALID_RESPONSE(x) (((x) >= 100)&&((x) < 600))
518
519 /** should the status code drop the connection */
520 #define ap_status_drops_connection(x) \
521                                    (((x) == HTTP_BAD_REQUEST)           || \
522                                     ((x) == HTTP_REQUEST_TIME_OUT)      || \
523                                     ((x) == HTTP_LENGTH_REQUIRED)       || \
524                                     ((x) == HTTP_REQUEST_ENTITY_TOO_LARGE) || \
525                                     ((x) == HTTP_REQUEST_URI_TOO_LARGE) || \
526                                     ((x) == HTTP_INTERNAL_SERVER_ERROR) || \
527                                     ((x) == HTTP_SERVICE_UNAVAILABLE) || \
528                                     ((x) == HTTP_NOT_IMPLEMENTED))
529 /** @} */
530
531 /**
532  * @defgroup Methods List of Methods recognized by the server
533  * @ingroup APACHE_CORE_DAEMON
534  * @{
535  *
536  * @brief Methods recognized (but not necessarily handled) by the server.
537  *
538  * These constants are used in bit shifting masks of size int, so it is
539  * unsafe to have more methods than bits in an int.  HEAD == M_GET.
540  * This list must be tracked by the list in http_protocol.c in routine
541  * ap_method_name_of().
542  *
543  */
544
545 #define M_GET                   0       /** RFC 2616: HTTP */
546 #define M_PUT                   1       /*  :             */
547 #define M_POST                  2
548 #define M_DELETE                3
549 #define M_CONNECT               4
550 #define M_OPTIONS               5
551 #define M_TRACE                 6       /** RFC 2616: HTTP */
552 #define M_PATCH                 7       /** no rfc(!)  ### remove this one? */
553 #define M_PROPFIND              8       /** RFC 2518: WebDAV */
554 #define M_PROPPATCH             9       /*  :               */
555 #define M_MKCOL                 10
556 #define M_COPY                  11
557 #define M_MOVE                  12
558 #define M_LOCK                  13
559 #define M_UNLOCK                14      /** RFC 2518: WebDAV */
560 #define M_VERSION_CONTROL       15      /** RFC 3253: WebDAV Versioning */
561 #define M_CHECKOUT              16      /*  :                          */
562 #define M_UNCHECKOUT            17
563 #define M_CHECKIN               18
564 #define M_UPDATE                19
565 #define M_LABEL                 20
566 #define M_REPORT                21
567 #define M_MKWORKSPACE           22
568 #define M_MKACTIVITY            23
569 #define M_BASELINE_CONTROL      24
570 #define M_MERGE                 25
571 #define M_INVALID               26      /** RFC 3253: WebDAV Versioning */
572
573 /**
574  * METHODS needs to be equal to the number of bits
575  * we are using for limit masks.
576  */
577 #define METHODS     64
578
579 /**
580  * The method mask bit to shift for anding with a bitmask.
581  */
582 #define AP_METHOD_BIT ((apr_int64_t)1)
583 /** @} */
584
585
586 /** @see ap_method_list_t */
587 typedef struct ap_method_list_t ap_method_list_t;
588
589 /**
590  * @struct ap_method_list_t
591  * @brief  Structure for handling HTTP methods.  
592  *
593  * Methods known to the server are accessed via a bitmask shortcut; 
594  * extension methods are handled by an array.
595  */
596 struct ap_method_list_t {
597     /** The bitmask used for known methods */
598     apr_int64_t method_mask;
599     /** the array used for extension methods */
600     apr_array_header_t *method_list;
601 };
602
603 /**
604  * @defgroup module_magic Module Magic mime types
605  * @{
606  */
607 /** Magic for mod_cgi[d] */
608 #define CGI_MAGIC_TYPE "application/x-httpd-cgi"
609 /** Magic for mod_include */
610 #define INCLUDES_MAGIC_TYPE "text/x-server-parsed-html"
611 /** Magic for mod_include */
612 #define INCLUDES_MAGIC_TYPE3 "text/x-server-parsed-html3"
613 /** Magic for mod_dir */
614 #define DIR_MAGIC_TYPE "httpd/unix-directory"
615
616 /** @} */
617 /* Just in case your linefeed isn't the one the other end is expecting. */
618 #if !APR_CHARSET_EBCDIC
619 /** linefeed */
620 #define LF 10
621 /** carrige return */
622 #define CR 13
623 /** carrige return /Line Feed Combo */
624 #define CRLF "\015\012"
625 #else /* APR_CHARSET_EBCDIC */
626 /* For platforms using the EBCDIC charset, the transition ASCII->EBCDIC is done
627  * in the buff package (bread/bputs/bwrite).  Everywhere else, we use
628  * "native EBCDIC" CR and NL characters. These are therefore
629  * defined as
630  * '\r' and '\n'.
631  */
632 #define CR '\r'
633 #define LF '\n'
634 #define CRLF "\r\n"
635 #endif /* APR_CHARSET_EBCDIC */                                   
636 /** Useful for common code with either platform charset. */
637 #define CRLF_ASCII "\015\012"
638
639 /**
640  * @defgroup values_request_rec_body Possible values for request_rec.read_body 
641  * @{
642  * Possible values for request_rec.read_body (set by handling module):
643  */
644
645 /** Send 413 error if message has any body */
646 #define REQUEST_NO_BODY          0
647 /** Send 411 error if body without Content-Length */
648 #define REQUEST_CHUNKED_ERROR    1
649 /** If chunked, remove the chunks for me. */
650 #define REQUEST_CHUNKED_DECHUNK  2
651 /** @} // values_request_rec_body */
652
653 /**
654  * @defgroup values_request_rec_used_path_info Possible values for request_rec.used_path_info 
655  * @ingroup APACHE_CORE_DAEMON
656  * @{
657  * Possible values for request_rec.used_path_info:
658  */
659
660 /** Accept the path_info from the request */
661 #define AP_REQ_ACCEPT_PATH_INFO    0
662 /** Return a 404 error if path_info was given */
663 #define AP_REQ_REJECT_PATH_INFO    1
664 /** Module may chose to use the given path_info */
665 #define AP_REQ_DEFAULT_PATH_INFO   2
666
667 /** @} // values_request_rec_used_path_info */
668
669
670 /*
671  * Things which may vary per file-lookup WITHIN a request ---
672  * e.g., state of MIME config.  Basically, the name of an object, info
673  * about the object, and any other info we may ahve which may need to
674  * change as we go poking around looking for it (e.g., overridden by
675  * .htaccess files).
676  *
677  * Note how the default state of almost all these things is properly
678  * zero, so that allocating it with pcalloc does the right thing without
679  * a whole lot of hairy initialization... so long as we are willing to
680  * make the (fairly) portable assumption that the bit pattern of a NULL
681  * pointer is, in fact, zero.
682  */
683
684 /**
685  * @brief This represents the result of calling htaccess; these are cached for
686  * each request.
687  */
688 struct htaccess_result {
689     /** the directory to which this applies */
690     const char *dir;
691     /** the overrides allowed for the .htaccess file */
692     int override;
693     /** the override options allowed for the .htaccess file */
694     int override_opts;
695     /** the configuration directives */
696     struct ap_conf_vector_t *htaccess;
697     /** the next one, or NULL if no more; N.B. never change this */
698     const struct htaccess_result *next;
699 };
700
701 /* The following four types define a hierarchy of activities, so that
702  * given a request_rec r you can write r->connection->server->process
703  * to get to the process_rec.  While this reduces substantially the
704  * number of arguments that various hooks require beware that in
705  * threaded versions of the server you must consider multiplexing
706  * issues.  */
707
708
709 /** A structure that represents one process */
710 typedef struct process_rec process_rec;
711 /** A structure that represents a virtual server */
712 typedef struct server_rec server_rec;
713 /** A structure that represents one connection */
714 typedef struct conn_rec conn_rec;
715 /** A structure that represents the current request */
716 typedef struct request_rec request_rec;
717 /** A structure that represents the status of the current connection */
718 typedef struct conn_state_t conn_state_t;
719
720 /* ### would be nice to not include this from httpd.h ... */
721 /* This comes after we have defined the request_rec type */
722 #include "apr_uri.h"
723
724 /** 
725  * @brief A structure that represents one process 
726  */
727 struct process_rec {
728     /** Global pool. Cleared upon normal exit */
729     apr_pool_t *pool;
730     /** Configuration pool. Cleared upon restart */
731     apr_pool_t *pconf;
732     /** Number of command line arguments passed to the program */
733     int argc;
734     /** The command line arguments */
735     const char * const *argv;
736     /** The program name used to execute the program */
737     const char *short_name;
738 };
739
740 /** 
741  * @brief A structure that represents the current request 
742  */
743 struct request_rec {
744     /** The pool associated with the request */
745     apr_pool_t *pool;
746     /** The connection to the client */
747     conn_rec *connection;
748     /** The virtual host for this request */
749     server_rec *server;
750
751     /** Pointer to the redirected request if this is an external redirect */
752     request_rec *next;
753     /** Pointer to the previous request if this is an internal redirect */
754     request_rec *prev;
755
756     /** Pointer to the main request if this is a sub-request
757      * (see http_request.h) */
758     request_rec *main;
759
760     /* Info about the request itself... we begin with stuff that only
761      * protocol.c should ever touch...
762      */
763     /** First line of request */
764     char *the_request;
765     /** HTTP/0.9, "simple" request (e.g. GET /foo\n w/no headers) */
766     int assbackwards;
767     /** A proxy request (calculated during post_read_request/translate_name)
768      *  possible values PROXYREQ_NONE, PROXYREQ_PROXY, PROXYREQ_REVERSE,
769      *                  PROXYREQ_RESPONSE
770      */
771     int proxyreq;
772     /** HEAD request, as opposed to GET */
773     int header_only;
774     /** Protocol string, as given to us, or HTTP/0.9 */
775     char *protocol;
776     /** Protocol version number of protocol; 1.1 = 1001 */
777     int proto_num;
778     /** Host, as set by full URI or Host: */
779     const char *hostname;
780
781     /** Time when the request started */
782     apr_time_t request_time;
783
784     /** Status line, if set by script */
785     const char *status_line;
786     /** Status line */
787     int status;
788
789     /* Request method, two ways; also, protocol, etc..  Outside of protocol.c,
790      * look, but don't touch.
791      */
792
793     /** Request method (eg. GET, HEAD, POST, etc.) */
794     const char *method;
795     /** M_GET, M_POST, etc. */
796     int method_number;
797
798     /**
799      *  'allowed' is a bitvector of the allowed methods.
800      *
801      *  A handler must ensure that the request method is one that
802      *  it is capable of handling.  Generally modules should DECLINE
803      *  any request methods they do not handle.  Prior to aborting the
804      *  handler like this the handler should set r->allowed to the list
805      *  of methods that it is willing to handle.  This bitvector is used
806      *  to construct the "Allow:" header required for OPTIONS requests,
807      *  and HTTP_METHOD_NOT_ALLOWED and HTTP_NOT_IMPLEMENTED status codes.
808      *
809      *  Since the default_handler deals with OPTIONS, all modules can
810      *  usually decline to deal with OPTIONS.  TRACE is always allowed,
811      *  modules don't need to set it explicitly.
812      *
813      *  Since the default_handler will always handle a GET, a
814      *  module which does *not* implement GET should probably return
815      *  HTTP_METHOD_NOT_ALLOWED.  Unfortunately this means that a Script GET
816      *  handler can't be installed by mod_actions.
817      */
818     apr_int64_t allowed;
819     /** Array of extension methods */
820     apr_array_header_t *allowed_xmethods; 
821     /** List of allowed methods */
822     ap_method_list_t *allowed_methods; 
823
824     /** byte count in stream is for body */
825     apr_off_t sent_bodyct;
826     /** body byte count, for easy access */
827     apr_off_t bytes_sent;
828     /** Last modified time of the requested resource */
829     apr_time_t mtime;
830
831     /* HTTP/1.1 connection-level features */
832
833     /** sending chunked transfer-coding */
834     int chunked;
835     /** The Range: header */
836     const char *range;
837     /** The "real" content length */
838     apr_off_t clength;
839
840     /** Remaining bytes left to read from the request body */
841     apr_off_t remaining;
842     /** Number of bytes that have been read  from the request body */
843     apr_off_t read_length;
844     /** Method for reading the request body
845      * (eg. REQUEST_CHUNKED_ERROR, REQUEST_NO_BODY,
846      *  REQUEST_CHUNKED_DECHUNK, etc...) */
847     int read_body;
848     /** reading chunked transfer-coding */
849     int read_chunked;
850     /** is client waiting for a 100 response? */
851     unsigned expecting_100;
852
853     /* MIME header environments, in and out.  Also, an array containing
854      * environment variables to be passed to subprocesses, so people can
855      * write modules to add to that environment.
856      *
857      * The difference between headers_out and err_headers_out is that the
858      * latter are printed even on error, and persist across internal redirects
859      * (so the headers printed for ErrorDocument handlers will have them).
860      *
861      * The 'notes' apr_table_t is for notes from one module to another, with no
862      * other set purpose in mind...
863      */
864
865     /** MIME header environment from the request */
866     apr_table_t *headers_in;
867     /** MIME header environment for the response */
868     apr_table_t *headers_out;
869     /** MIME header environment for the response, printed even on errors and
870      * persist across internal redirects */
871     apr_table_t *err_headers_out;
872     /** Array of environment variables to be used for sub processes */
873     apr_table_t *subprocess_env;
874     /** Notes from one module to another */
875     apr_table_t *notes;
876
877     /* content_type, handler, content_encoding, and all content_languages 
878      * MUST be lowercased strings.  They may be pointers to static strings;
879      * they should not be modified in place.
880      */
881     /** The content-type for the current request */
882     const char *content_type;   /* Break these out --- we dispatch on 'em */
883     /** The handler string that we use to call a handler function */
884     const char *handler;        /* What we *really* dispatch on */
885
886     /** How to encode the data */
887     const char *content_encoding;
888     /** Array of strings representing the content languages */
889     apr_array_header_t *content_languages;
890
891     /** variant list validator (if negotiated) */
892     char *vlist_validator;
893     
894     /** If an authentication check was made, this gets set to the user name. */
895     char *user; 
896     /** If an authentication check was made, this gets set to the auth type. */
897     char *ap_auth_type;
898
899     /** This response can not be cached */
900     int no_cache;
901     /** There is no local copy of this response */
902     int no_local_copy;
903
904     /* What object is being requested (either directly, or via include
905      * or content-negotiation mapping).
906      */
907
908     /** The URI without any parsing performed */
909     char *unparsed_uri; 
910     /** The path portion of the URI */
911     char *uri;
912     /** The filename on disk corresponding to this response */
913     char *filename;
914     /* XXX: What does this mean? Please define "canonicalize" -aaron */
915     /** The true filename, we canonicalize r->filename if these don't match */
916     char *canonical_filename;
917     /** The PATH_INFO extracted from this request */
918     char *path_info;
919     /** The QUERY_ARGS extracted from this request */
920     char *args; 
921     /**  finfo.protection (st_mode) set to zero if no such file */
922     apr_finfo_t finfo;
923     /** A struct containing the components of URI */
924     apr_uri_t parsed_uri;
925
926     /**
927      * Flag for the handler to accept or reject path_info on 
928      * the current request.  All modules should respect the
929      * AP_REQ_ACCEPT_PATH_INFO and AP_REQ_REJECT_PATH_INFO 
930      * values, while AP_REQ_DEFAULT_PATH_INFO indicates they
931      * may follow existing conventions.  This is set to the
932      * user's preference upon HOOK_VERY_FIRST of the fixups.
933      */
934     int used_path_info;
935
936     /* Various other config info which may change with .htaccess files
937      * These are config vectors, with one void* pointer for each module
938      * (the thing pointed to being the module's business).
939      */
940
941     /** Options set in config files, etc. */
942     struct ap_conf_vector_t *per_dir_config;
943     /** Notes on *this* request */
944     struct ap_conf_vector_t *request_config;
945
946     /**
947      * A linked list of the .htaccess configuration directives
948      * accessed by this request.
949      * N.B. always add to the head of the list, _never_ to the end.
950      * that way, a sub request's list can (temporarily) point to a parent's list
951      */
952     const struct htaccess_result *htaccess;
953
954     /** A list of output filters to be used for this request */
955     struct ap_filter_t *output_filters;
956     /** A list of input filters to be used for this request */
957     struct ap_filter_t *input_filters;
958
959     /** A list of protocol level output filters to be used for this
960      *  request */
961     struct ap_filter_t *proto_output_filters;
962     /** A list of protocol level input filters to be used for this
963      *  request */
964     struct ap_filter_t *proto_input_filters;
965
966     /** A flag to determine if the eos bucket has been sent yet */
967     int eos_sent;
968
969     /** The optional kept body of the request. */
970     apr_bucket_brigade *kept_body;
971
972     apr_thread_mutex_t *invoke_mtx;
973
974     apr_table_t *body_table;
975
976 /* Things placed at the end of the record to avoid breaking binary
977  * compatibility.  It would be nice to remember to reorder the entire
978  * record to improve 64bit alignment the next time we need to break
979  * binary compatibility for some other reason.
980  */
981 };
982
983 /**
984  * @defgroup ProxyReq Proxy request types
985  *
986  * Possible values of request_rec->proxyreq. A request could be normal,
987  *  proxied or reverse proxied. Normally proxied and reverse proxied are
988  *  grouped together as just "proxied", but sometimes it's necessary to
989  *  tell the difference between the two, such as for authentication.
990  * @{
991  */
992
993 #define PROXYREQ_NONE 0         /**< No proxy */
994 #define PROXYREQ_PROXY 1        /**< Standard proxy */
995 #define PROXYREQ_REVERSE 2      /**< Reverse proxy */
996 #define PROXYREQ_RESPONSE 3 /**< Origin response */
997
998 /* @} */
999
1000 /**
1001  * @brief Enumeration of connection keepalive options
1002  */
1003 typedef enum {
1004     AP_CONN_UNKNOWN,
1005     AP_CONN_CLOSE,
1006     AP_CONN_KEEPALIVE
1007 } ap_conn_keepalive_e;
1008
1009 /** 
1010  * @brief Structure to store things which are per connection 
1011  */
1012 struct conn_rec {
1013     /** Pool associated with this connection */
1014     apr_pool_t *pool;
1015     /** Physical vhost this conn came in on */
1016     server_rec *base_server;
1017     /** used by http_vhost.c */
1018     void *vhost_lookup_data;
1019
1020     /* Information about the connection itself */
1021     /** local address */
1022     apr_sockaddr_t *local_addr;
1023     /** remote address */
1024     apr_sockaddr_t *remote_addr;
1025
1026     /** Client's IP address */
1027     char *remote_ip;
1028     /** Client's DNS name, if known.  NULL if DNS hasn't been checked,
1029      *  "" if it has and no address was found.  N.B. Only access this though
1030      * get_remote_host() */
1031     char *remote_host;
1032     /** Only ever set if doing rfc1413 lookups.  N.B. Only access this through
1033      *  get_remote_logname() */
1034     char *remote_logname;
1035
1036     /** Are we still talking? */
1037     unsigned aborted:1;
1038
1039     /** Are we going to keep the connection alive for another request?
1040      * @see ap_conn_keepalive_e */
1041     ap_conn_keepalive_e keepalive;
1042
1043     /** have we done double-reverse DNS? -1 yes/failure, 0 not yet, 
1044      *  1 yes/success */
1045     signed int double_reverse:2;
1046
1047     /** How many times have we used it? */
1048     int keepalives;
1049     /** server IP address */
1050     char *local_ip;
1051     /** used for ap_get_server_name when UseCanonicalName is set to DNS
1052      *  (ignores setting of HostnameLookups) */
1053     char *local_host;
1054
1055     /** ID of this connection; unique at any point in time */
1056     long id; 
1057     /** Config vector containing pointers to connections per-server
1058      *  config structures. */
1059     struct ap_conf_vector_t *conn_config;
1060     /** Notes on *this* connection: send note from one module to
1061      *  another. must remain valid for all requests on this conn */
1062     apr_table_t *notes;
1063     /** A list of input filters to be used for this connection */
1064     struct ap_filter_t *input_filters;
1065     /** A list of output filters to be used for this connection */
1066     struct ap_filter_t *output_filters;
1067     /** handle to scoreboard information for this connection */
1068     void *sbh;
1069     /** The bucket allocator to use for all bucket/brigade creations */
1070     struct apr_bucket_alloc_t *bucket_alloc;
1071     /** The current state of this connection */
1072     conn_state_t *cs;
1073     /** Is there data pending in the input filters? */ 
1074     int data_in_input_filters;
1075     /** Is there data pending in the output filters? */
1076     int data_in_output_filters;
1077
1078     /** Are there any filters that clogg/buffer the input stream, breaking
1079      *  the event mpm.
1080      */
1081     int clogging_input_filters;
1082     
1083     /** This points to the current thread being used to process this request,
1084      * over the lifetime of a request, the value may change. Users of the connection
1085      * record should not rely upon it staying the same between calls that invole
1086      * the MPM.
1087      */
1088 #if APR_HAS_THREADS
1089     apr_thread_t *current_thread;
1090 #endif
1091 };
1092
1093 /** 
1094  * Enumeration of connection states 
1095  */
1096 typedef enum  {
1097     CONN_STATE_CHECK_REQUEST_LINE_READABLE,
1098     CONN_STATE_READ_REQUEST_LINE,
1099     CONN_STATE_HANDLER,
1100     CONN_STATE_WRITE_COMPLETION,
1101     CONN_STATE_SUSPENDED,
1102     CONN_STATE_LINGER
1103 } conn_state_e;
1104
1105 /** 
1106  * @brief A structure to contain connection state information 
1107  */
1108 struct conn_state_t {
1109     /** APR_RING of expiration timeouts */
1110     APR_RING_ENTRY(conn_state_t) timeout_list;
1111     /** the expiration time of the next keepalive timeout */
1112     apr_time_t expiration_time;
1113     /** Current state of the connection */
1114     conn_state_e state;
1115     /** connection record this struct refers to */
1116     conn_rec *c;
1117     /** memory pool to allocate from */
1118     apr_pool_t *p;
1119     /** bucket allocator */
1120     apr_bucket_alloc_t *bucket_alloc;
1121     /** poll file decriptor information */
1122     apr_pollfd_t pfd;
1123 };
1124
1125 /* Per-vhost config... */
1126
1127 /**
1128  * The address 255.255.255.255, when used as a virtualhost address,
1129  * will become the "default" server when the ip doesn't match other vhosts.
1130  */
1131 #define DEFAULT_VHOST_ADDR 0xfffffffful
1132
1133
1134 /**
1135  * @struct server_addr_rec
1136  * @brief  A structure to be used for Per-vhost config 
1137  */
1138 typedef struct server_addr_rec server_addr_rec;
1139 struct server_addr_rec {
1140     /** The next server in the list */
1141     server_addr_rec *next;
1142     /** The bound address, for this server */
1143     apr_sockaddr_t *host_addr;
1144     /** The bound port, for this server */
1145     apr_port_t host_port;
1146     /** The name given in "<VirtualHost>" */
1147     char *virthost;
1148 };
1149
1150 /** 
1151  * @brief A structure to store information for each virtual server 
1152  */
1153 struct server_rec {
1154     /** The process this server is running in */
1155     process_rec *process;
1156     /** The next server in the list */
1157     server_rec *next;
1158
1159     /** The name of the server */
1160     const char *defn_name;
1161     /** The line of the config file that the server was defined on */
1162     unsigned defn_line_number;
1163
1164     /* Contact information */
1165
1166     /** The admin's contact information */
1167     char *server_admin;
1168     /** The server hostname */
1169     char *server_hostname;
1170     /** for redirects, etc. */
1171     apr_port_t port;
1172
1173     /* Log files --- note that transfer log is now in the modules... */
1174
1175     /** The name of the error log */
1176     char *error_fname;
1177     /** A file descriptor that references the error log */
1178     apr_file_t *error_log;
1179     /** The log level for this server */
1180     int loglevel;
1181
1182     /* Module-specific configuration for server, and defaults... */
1183
1184     /** true if this is the virtual server */
1185     int is_virtual;
1186     /** Config vector containing pointers to modules' per-server config 
1187      *  structures. */
1188     struct ap_conf_vector_t *module_config; 
1189     /** MIME type info, etc., before we start checking per-directory info */
1190     struct ap_conf_vector_t *lookup_defaults;
1191
1192     /* Transaction handling */
1193
1194     /** I haven't got a clue */
1195     server_addr_rec *addrs;
1196     /** Timeout, as an apr interval, before we give up */
1197     apr_interval_time_t timeout;
1198     /** The apr interval we will wait for another request */
1199     apr_interval_time_t keep_alive_timeout;
1200     /** Maximum requests per connection */
1201     int keep_alive_max;
1202     /** Use persistent connections? */
1203     int keep_alive;
1204
1205     /** Pathname for ServerPath */
1206     const char *path;
1207     /** Length of path */
1208     int pathlen;
1209
1210     /** Normal names for ServerAlias servers */
1211     apr_array_header_t *names;
1212     /** Wildcarded names for ServerAlias servers */
1213     apr_array_header_t *wild_names;
1214
1215     /** limit on size of the HTTP request line    */
1216     int limit_req_line;
1217     /** limit on size of any request header field */
1218     int limit_req_fieldsize;
1219     /** limit on number of request header fields  */
1220     int limit_req_fields; 
1221
1222     /** The server request scheme for redirect responses */
1223     const char *server_scheme;
1224 };
1225
1226 typedef struct core_output_filter_ctx {
1227     apr_bucket_brigade *buffered_bb;
1228     apr_size_t bytes_in;
1229     apr_size_t bytes_written;
1230 } core_output_filter_ctx_t;
1231  
1232 typedef struct core_filter_ctx {
1233     apr_bucket_brigade *b;
1234     apr_bucket_brigade *tmpbb;
1235 } core_ctx_t;
1236  
1237 typedef struct core_net_rec {
1238     /** Connection to the client */
1239     apr_socket_t *client_socket;
1240
1241     /** connection record */
1242     conn_rec *c;
1243  
1244     core_output_filter_ctx_t *out_ctx;
1245     core_ctx_t *in_ctx;
1246 } core_net_rec;
1247
1248 /**
1249  * Examine a field value (such as a media-/content-type) string and return
1250  * it sans any parameters; e.g., strip off any ';charset=foo' and the like.
1251  * @param p Pool to allocate memory from
1252  * @param intype The field to examine
1253  * @return A copy of the field minus any parameters
1254  */
1255 AP_DECLARE(char *) ap_field_noparam(apr_pool_t *p, const char *intype);
1256
1257 /**
1258  * Convert a time from an integer into a string in a specified format
1259  * @param p The pool to allocate memory from
1260  * @param t The time to convert
1261  * @param fmt The format to use for the conversion
1262  * @param gmt Convert the time for GMT?
1263  * @return The string that represents the specified time
1264  */
1265 AP_DECLARE(char *) ap_ht_time(apr_pool_t *p, apr_time_t t, const char *fmt, int gmt);
1266
1267 /* String handling. The *_nc variants allow you to use non-const char **s as
1268    arguments (unfortunately C won't automatically convert a char ** to a const
1269    char **) */
1270
1271 /**
1272  * Get the characters until the first occurance of a specified character
1273  * @param p The pool to allocate memory from
1274  * @param line The string to get the characters from
1275  * @param stop The character to stop at
1276  * @return A copy of the characters up to the first stop character
1277  */
1278 AP_DECLARE(char *) ap_getword(apr_pool_t *p, const char **line, char stop);
1279
1280 /**
1281  * Get the characters until the first occurance of a specified character
1282  * @param p The pool to allocate memory from
1283  * @param line The string to get the characters from
1284  * @param stop The character to stop at
1285  * @return A copy of the characters up to the first stop character
1286  * @note This is the same as ap_getword(), except it doesn't use const char **.
1287  */
1288 AP_DECLARE(char *) ap_getword_nc(apr_pool_t *p, char **line, char stop);
1289
1290 /**
1291  * Get the first word from a given string.  A word is defined as all characters
1292  * up to the first whitespace.
1293  * @param p The pool to allocate memory from
1294  * @param line The string to traverse
1295  * @return The first word in the line
1296  */
1297 AP_DECLARE(char *) ap_getword_white(apr_pool_t *p, const char **line);
1298
1299 /**
1300  * Get the first word from a given string.  A word is defined as all characters
1301  * up to the first whitespace.
1302  * @param p The pool to allocate memory from
1303  * @param line The string to traverse
1304  * @return The first word in the line
1305  * @note The same as ap_getword_white(), except it doesn't use const char**
1306  */
1307 AP_DECLARE(char *) ap_getword_white_nc(apr_pool_t *p, char **line);
1308
1309 /**
1310  * Get all characters from the first occurance of @a stop to the first "\0"
1311  * @param p The pool to allocate memory from
1312  * @param line The line to traverse
1313  * @param stop The character to start at
1314  * @return A copy of all caracters after the first occurance of the specified
1315  *         character
1316  */
1317 AP_DECLARE(char *) ap_getword_nulls(apr_pool_t *p, const char **line,
1318                                     char stop);
1319
1320 /**
1321  * Get all characters from the first occurance of @a stop to the first "\0"
1322  * @param p The pool to allocate memory from
1323  * @param line The line to traverse
1324  * @param stop The character to start at
1325  * @return A copy of all caracters after the first occurance of the specified
1326  *         character
1327  * @note The same as ap_getword_nulls(), except it doesn't use const char **.
1328  */
1329 AP_DECLARE(char *) ap_getword_nulls_nc(apr_pool_t *p, char **line, char stop);
1330
1331 /**
1332  * Get the second word in the string paying attention to quoting
1333  * @param p The pool to allocate from
1334  * @param line The line to traverse
1335  * @return A copy of the string
1336  */
1337 AP_DECLARE(char *) ap_getword_conf(apr_pool_t *p, const char **line);
1338
1339 /**
1340  * Get the second word in the string paying attention to quoting
1341  * @param p The pool to allocate from
1342  * @param line The line to traverse
1343  * @return A copy of the string
1344  * @note The same as ap_getword_conf(), except it doesn't use const char **.
1345  */
1346 AP_DECLARE(char *) ap_getword_conf_nc(apr_pool_t *p, char **line);
1347
1348 /**
1349  * Check a string for any ${ENV} environment variable construct and replace 
1350  * each them by the value of that environment variable, if it exists. If the 
1351  * environment value does not exist, leave the ${ENV} construct alone; it 
1352  * means something else.
1353  * @param p The pool to allocate from
1354  * @param word The string to check
1355  * @return The string with the replaced environment variables
1356  */
1357 AP_DECLARE(const char *) ap_resolve_env(apr_pool_t *p, const char * word); 
1358
1359 /**
1360  * Size an HTTP header field list item, as separated by a comma.
1361  * @param field The field to size
1362  * @param len The length of the field
1363  * @return The return value is a pointer to the beginning of the non-empty 
1364  * list item within the original string (or NULL if there is none) and the 
1365  * address of field is shifted to the next non-comma, non-whitespace 
1366  * character.  len is the length of the item excluding any beginning whitespace.
1367  */
1368 AP_DECLARE(const char *) ap_size_list_item(const char **field, int *len);
1369
1370 /**
1371  * Retrieve an HTTP header field list item, as separated by a comma,
1372  * while stripping insignificant whitespace and lowercasing anything not in
1373  * a quoted string or comment.  
1374  * @param p The pool to allocate from
1375  * @param field The field to retrieve
1376  * @return The return value is a new string containing the converted list 
1377  *         item (or NULL if none) and the address pointed to by field is 
1378  *         shifted to the next non-comma, non-whitespace.
1379  */
1380 AP_DECLARE(char *) ap_get_list_item(apr_pool_t *p, const char **field);
1381
1382 /**
1383  * Find an item in canonical form (lowercase, no extra spaces) within
1384  * an HTTP field value list.  
1385  * @param p The pool to allocate from
1386  * @param line The field value list to search
1387  * @param tok The token to search for
1388  * @return 1 if found, 0 if not found.
1389  */
1390 AP_DECLARE(int) ap_find_list_item(apr_pool_t *p, const char *line, const char *tok);
1391
1392 /**
1393  * Retrieve a token, spacing over it and adjusting the pointer to
1394  * the first non-white byte afterwards.  Note that these tokens
1395  * are delimited by semis and commas and can also be delimited
1396  * by whitespace at the caller's option.
1397  * @param p The pool to allocate from
1398  * @param accept_line The line to retrieve the token from (adjusted afterwards)
1399  * @param accept_white Is it delimited by whitespace
1400  * @return the token
1401  */
1402 AP_DECLARE(char *) ap_get_token(apr_pool_t *p, const char **accept_line, int accept_white);
1403
1404 /**
1405  * Find http tokens, see the definition of token from RFC2068 
1406  * @param p The pool to allocate from
1407  * @param line The line to find the token
1408  * @param tok The token to find
1409  * @return 1 if the token is found, 0 otherwise
1410  */
1411 AP_DECLARE(int) ap_find_token(apr_pool_t *p, const char *line, const char *tok);
1412
1413 /**
1414  * find http tokens from the end of the line
1415  * @param p The pool to allocate from
1416  * @param line The line to find the token
1417  * @param tok The token to find
1418  * @return 1 if the token is found, 0 otherwise
1419  */
1420 AP_DECLARE(int) ap_find_last_token(apr_pool_t *p, const char *line, const char *tok);
1421
1422 /**
1423  * Check for an Absolute URI syntax
1424  * @param u The string to check
1425  * @return 1 if URI, 0 otherwise
1426  */
1427 AP_DECLARE(int) ap_is_url(const char *u);
1428
1429 /**
1430  * Unescape a string
1431  * @param url The string to unescape
1432  * @return 0 on success, non-zero otherwise
1433  */
1434 AP_DECLARE(int) ap_unescape_all(char *url);
1435
1436 /**
1437  * Unescape a URL
1438  * @param url The url to unescape
1439  * @return 0 on success, non-zero otherwise
1440  */
1441 AP_DECLARE(int) ap_unescape_url(char *url);
1442
1443 /**
1444  * Unescape a URL, but leaving %2f (slashes) escaped
1445  * @param url The url to unescape
1446  * @return 0 on success, non-zero otherwise
1447  */
1448 AP_DECLARE(int) ap_unescape_url_keep2f(char *url);
1449
1450 /**
1451  * Convert all double slashes to single slashes
1452  * @param name The string to convert
1453  */
1454 AP_DECLARE(void) ap_no2slash(char *name);
1455
1456 /**
1457  * Remove all ./ and xx/../ substrings from a file name. Also remove
1458  * any leading ../ or /../ substrings.
1459  * @param name the file name to parse
1460  */
1461 AP_DECLARE(void) ap_getparents(char *name);
1462
1463 /**
1464  * Escape a path segment, as defined in RFC 1808
1465  * @param p The pool to allocate from
1466  * @param s The path to convert
1467  * @return The converted URL
1468  */
1469 AP_DECLARE(char *) ap_escape_path_segment(apr_pool_t *p, const char *s);
1470
1471 /**
1472  * Escape a path segment, as defined in RFC 1808, to a preallocated buffer.
1473  * @param c The preallocated buffer to write to
1474  * @param s The path to convert
1475  * @return The converted URL (c)
1476  */
1477 AP_DECLARE(char *) ap_escape_path_segment_buffer(char *c, const char *s);
1478
1479 /**
1480  * convert an OS path to a URL in an OS dependant way.
1481  * @param p The pool to allocate from
1482  * @param path The path to convert
1483  * @param partial if set, assume that the path will be appended to something
1484  *        with a '/' in it (and thus does not prefix "./")
1485  * @return The converted URL
1486  */
1487 AP_DECLARE(char *) ap_os_escape_path(apr_pool_t *p, const char *path, int partial);
1488
1489 /** @see ap_os_escape_path */
1490 #define ap_escape_uri(ppool,path) ap_os_escape_path(ppool,path,1)
1491
1492 /**
1493  * Escape an html string
1494  * @param p The pool to allocate from
1495  * @param s The html to escape
1496  * @return The escaped string
1497  */
1498 #define ap_escape_html(p,s) ap_escape_html2(p,s,0)
1499 /**
1500  * Escape an html string
1501  * @param p The pool to allocate from
1502  * @param s The html to escape
1503  * @param toasc Whether to escape all non-ASCII chars to &#nnn;
1504  * @return The escaped string
1505  */
1506 AP_DECLARE(char *) ap_escape_html2(apr_pool_t *p, const char *s, int toasc);
1507
1508 /**
1509  * Escape a string for logging
1510  * @param p The pool to allocate from
1511  * @param str The string to escape
1512  * @return The escaped string
1513  */
1514 AP_DECLARE(char *) ap_escape_logitem(apr_pool_t *p, const char *str);
1515
1516 /**
1517  * Escape a string for logging into the error log (without a pool)
1518  * @param dest The buffer to write to
1519  * @param source The string to escape
1520  * @param buflen The buffer size for the escaped string (including "\0")
1521  * @return The len of the escaped string (always < maxlen)
1522  */
1523 AP_DECLARE(apr_size_t) ap_escape_errorlog_item(char *dest, const char *source,
1524                                                apr_size_t buflen);
1525
1526 /**
1527  * Construct a full hostname
1528  * @param p The pool to allocate from
1529  * @param hostname The hostname of the server
1530  * @param port The port the server is running on
1531  * @param r The current request
1532  * @return The server's hostname
1533  */
1534 AP_DECLARE(char *) ap_construct_server(apr_pool_t *p, const char *hostname,
1535                                     apr_port_t port, const request_rec *r);
1536
1537 /**
1538  * Escape a shell command
1539  * @param p The pool to allocate from
1540  * @param s The command to escape
1541  * @return The escaped shell command
1542  */
1543 AP_DECLARE(char *) ap_escape_shell_cmd(apr_pool_t *p, const char *s);
1544
1545 /**
1546  * Count the number of directories in a path
1547  * @param path The path to count
1548  * @return The number of directories
1549  */
1550 AP_DECLARE(int) ap_count_dirs(const char *path);
1551
1552 /**
1553  * Copy at most @a n leading directories of @a s into @a d. @a d
1554  * should be at least as large as @a s plus 1 extra byte
1555  *
1556  * @param d The location to copy to
1557  * @param s The location to copy from
1558  * @param n The number of directories to copy
1559  * @return value is the ever useful pointer to the trailing "\0" of d
1560  * @note on platforms with drive letters, n = 0 returns the "/" root, 
1561  * whereas n = 1 returns the "d:/" root.  On all other platforms, n = 0
1562  * returns the empty string.  */
1563 AP_DECLARE(char *) ap_make_dirstr_prefix(char *d, const char *s, int n);
1564
1565 /**
1566  * Return the parent directory name (including trailing /) of the file
1567  * @a s
1568  * @param p The pool to allocate from
1569  * @param s The file to get the parent of
1570  * @return A copy of the file's parent directory
1571  */
1572 AP_DECLARE(char *) ap_make_dirstr_parent(apr_pool_t *p, const char *s);
1573
1574 /**
1575  * Given a directory and filename, create a single path from them.  This
1576  * function is smart enough to ensure that there is a sinlge '/' between the
1577  * directory and file names
1578  * @param a The pool to allocate from
1579  * @param dir The directory name
1580  * @param f The filename
1581  * @return A copy of the full path
1582  * @note Never consider using this function if you are dealing with filesystem
1583  * names that need to remain canonical, unless you are merging an apr_dir_read
1584  * path and returned filename.  Otherwise, the result is not canonical.
1585  */
1586 AP_DECLARE(char *) ap_make_full_path(apr_pool_t *a, const char *dir, const char *f);
1587
1588 /**
1589  * Test if the given path has an an absolute path.
1590  * @param p The pool to allocate from
1591  * @param dir The directory name
1592  * @note The converse is not necessarily true, some OS's (Win32/Netware) have
1593  * multiple forms of absolute paths.  This only reports if the path is absolute
1594  * in a canonical sense.
1595  */
1596 AP_DECLARE(int) ap_os_is_path_absolute(apr_pool_t *p, const char *dir);
1597
1598 /**
1599  * Does the provided string contain wildcard characters?  This is useful
1600  * for determining if the string should be passed to strcmp_match or to strcmp.
1601  * The only wildcard characters recognized are '?' and '*'
1602  * @param str The string to check
1603  * @return 1 if the string has wildcards, 0 otherwise
1604  */
1605 AP_DECLARE(int) ap_is_matchexp(const char *str);
1606
1607 /**
1608  * Determine if a string matches a patterm containing the wildcards '?' or '*'
1609  * @param str The string to check
1610  * @param expected The pattern to match against
1611  * @return 1 if the two strings match, 0 otherwise
1612  */
1613 AP_DECLARE(int) ap_strcmp_match(const char *str, const char *expected);
1614
1615 /**
1616  * Determine if a string matches a patterm containing the wildcards '?' or '*',
1617  * ignoring case
1618  * @param str The string to check
1619  * @param expected The pattern to match against
1620  * @return 1 if the two strings match, 0 otherwise
1621  */
1622 AP_DECLARE(int) ap_strcasecmp_match(const char *str, const char *expected);
1623
1624 /**
1625  * Find the first occurrence of the substring s2 in s1, regardless of case
1626  * @param s1 The string to search
1627  * @param s2 The substring to search for
1628  * @return A pointer to the beginning of the substring
1629  * @remark See apr_strmatch() for a faster alternative
1630  */
1631 AP_DECLARE(char *) ap_strcasestr(const char *s1, const char *s2);
1632
1633 /**
1634  * Return a pointer to the location inside of bigstring immediately after prefix
1635  * @param bigstring The input string
1636  * @param prefix The prefix to strip away
1637  * @return A pointer relative to bigstring after prefix
1638  */
1639 AP_DECLARE(const char *) ap_stripprefix(const char *bigstring,
1640                                         const char *prefix);
1641
1642 /**
1643  * Decode a base64 encoded string into memory allocated from a pool
1644  * @param p The pool to allocate from
1645  * @param bufcoded The encoded string
1646  * @return The decoded string
1647  */
1648 AP_DECLARE(char *) ap_pbase64decode(apr_pool_t *p, const char *bufcoded);
1649
1650 /**
1651  * Encode a string into memory allocated from a pool in base 64 format
1652  * @param p The pool to allocate from
1653  * @param string The plaintext string
1654  * @return The encoded string
1655  */
1656 AP_DECLARE(char *) ap_pbase64encode(apr_pool_t *p, char *string); 
1657
1658 /**
1659  * Compile a regular expression to be used later
1660  * @param p The pool to allocate from
1661  * @param pattern the regular expression to compile
1662  * @param cflags The bitwise or of one or more of the following:
1663  *   @li REG_EXTENDED - Use POSIX extended Regular Expressions
1664  *   @li REG_ICASE    - Ignore case
1665  *   @li REG_NOSUB    - Support for substring addressing of matches
1666  *       not required
1667  *   @li REG_NEWLINE  - Match-any-character operators don't match new-line
1668  * @return The compiled regular expression
1669  */
1670 AP_DECLARE(ap_regex_t *) ap_pregcomp(apr_pool_t *p, const char *pattern,
1671                                      int cflags);
1672
1673 /**
1674  * Free the memory associated with a compiled regular expression
1675  * @param p The pool the regex was allocated from
1676  * @param reg The regular expression to free
1677  */
1678 AP_DECLARE(void) ap_pregfree(apr_pool_t *p, ap_regex_t *reg);
1679
1680 /**
1681  * After performing a successful regex match, you may use this function to 
1682  * perform a series of string substitutions based on subexpressions that were
1683  * matched during the call to ap_regexec
1684  * @param p The pool to allocate from
1685  * @param input An arbitrary string containing $1 through $9.  These are 
1686  *              replaced with the corresponding matched sub-expressions
1687  * @param source The string that was originally matched to the regex
1688  * @param nmatch the nmatch returned from ap_pregex
1689  * @param pmatch the pmatch array returned from ap_pregex
1690  */
1691 AP_DECLARE(char *) ap_pregsub(apr_pool_t *p, const char *input, const char *source,
1692                               size_t nmatch, ap_regmatch_t pmatch[]);
1693
1694 /**
1695  * We want to downcase the type/subtype for comparison purposes
1696  * but nothing else because ;parameter=foo values are case sensitive.
1697  * @param s The content-type to convert to lowercase
1698  */
1699 AP_DECLARE(void) ap_content_type_tolower(char *s);
1700
1701 /**
1702  * convert a string to all lowercase
1703  * @param s The string to convert to lowercase 
1704  */
1705 AP_DECLARE(void) ap_str_tolower(char *s);
1706
1707 /**
1708  * Search a string from left to right for the first occurrence of a 
1709  * specific character
1710  * @param str The string to search
1711  * @param c The character to search for
1712  * @return The index of the first occurrence of c in str
1713  */
1714 AP_DECLARE(int) ap_ind(const char *str, char c);        /* Sigh... */
1715
1716 /**
1717  * Search a string from right to left for the first occurrence of a 
1718  * specific character
1719  * @param str The string to search
1720  * @param c The character to search for
1721  * @return The index of the first occurrence of c in str
1722  */
1723 AP_DECLARE(int) ap_rind(const char *str, char c);
1724
1725 /**
1726  * Given a string, replace any bare " with \" .
1727  * @param p The pool to allocate memory from
1728  * @param instring The string to search for "
1729  * @return A copy of the string with escaped quotes 
1730  */
1731 AP_DECLARE(char *) ap_escape_quotes(apr_pool_t *p, const char *instring);
1732
1733 /**
1734  * Given a string, append the PID deliminated by delim.
1735  * Usually used to create a pid-appended filepath name
1736  * (eg: /a/b/foo -> /a/b/foo.6726). A function, and not
1737  * a macro, to avoid unistd.h dependency
1738  * @param p The pool to allocate memory from
1739  * @param string The string to append the PID to
1740  * @param delim The string to use to deliminate the string from the PID
1741  * @return A copy of the string with the PID appended 
1742  */
1743 AP_DECLARE(char *) ap_append_pid(apr_pool_t *p, const char *string,
1744                                  const char *delim);
1745
1746 /**
1747  * Parse a given timeout parameter string into an apr_interval_time_t value.
1748  * The unit of the time interval is given as postfix string to the numeric
1749  * string. Currently the following units are understood:
1750  *
1751  * ms    : milliseconds
1752  * s     : seconds
1753  * mi[n] : minutes
1754  * h     : hours
1755  *
1756  * If no unit is contained in the given timeout parameter the default_time_unit
1757  * will be used instead.
1758  * @param timeout_parameter The string containing the timeout parameter.
1759  * @param timeout The timeout value to be returned.
1760  * @param default_time_unit The default time unit to use if none is specified
1761  * in timeout_parameter.
1762  * @return Status value indicating whether the parsing was successful or not.
1763  */
1764 AP_DECLARE(apr_status_t) ap_timeout_parameter_parse(
1765                                                const char *timeout_parameter,
1766                                                apr_interval_time_t *timeout,
1767                                                const char *default_time_unit);
1768
1769 /* Misc system hackery */
1770 /**
1771  * Given the name of an object in the file system determine if it is a directory
1772  * @param p The pool to allocate from 
1773  * @param name The name of the object to check
1774  * @return 1 if it is a directory, 0 otherwise
1775  */
1776 AP_DECLARE(int) ap_is_rdirectory(apr_pool_t *p, const char *name);
1777
1778 /**
1779  * Given the name of an object in the file system determine if it is a directory - this version is symlink aware
1780  * @param p The pool to allocate from 
1781  * @param name The name of the object to check
1782  * @return 1 if it is a directory, 0 otherwise
1783  */
1784 AP_DECLARE(int) ap_is_directory(apr_pool_t *p, const char *name);
1785
1786 #ifdef _OSD_POSIX
1787 extern int os_init_job_environment(server_rec *s, const char *user_name, int one_process);
1788 #endif /* _OSD_POSIX */
1789
1790 /**
1791  * Determine the local host name for the current machine
1792  * @param p The pool to allocate from
1793  * @return A copy of the local host name
1794  */
1795 char *ap_get_local_host(apr_pool_t *p);
1796
1797 /**
1798  * Log an assertion to the error log
1799  * @param szExp The assertion that failed
1800  * @param szFile The file the assertion is in
1801  * @param nLine The line the assertion is defined on
1802  */
1803 AP_DECLARE(void) ap_log_assert(const char *szExp, const char *szFile, int nLine)
1804                             __attribute__((noreturn));
1805
1806 /** 
1807  * @internal Internal Assert function
1808  */
1809 #define ap_assert(exp) ((exp) ? (void)0 : ap_log_assert(#exp,__FILE__,__LINE__))
1810
1811 /**
1812  * Redefine assert() to something more useful for an Apache...
1813  *
1814  * Use ap_assert() if the condition should always be checked.
1815  * Use AP_DEBUG_ASSERT() if the condition should only be checked when AP_DEBUG
1816  * is defined.
1817  */
1818 #ifdef AP_DEBUG
1819 #define AP_DEBUG_ASSERT(exp) ap_assert(exp)
1820 #else
1821 #define AP_DEBUG_ASSERT(exp) ((void)0)
1822 #endif
1823
1824 /**
1825  * @defgroup stopsignal Flags which indicate places where the sever should stop for debugging.
1826  * @{
1827  * A set of flags which indicate places where the server should raise(SIGSTOP).
1828  * This is useful for debugging, because you can then attach to that process
1829  * with gdb and continue.  This is important in cases where one_process
1830  * debugging isn't possible.
1831  */
1832 /** stop on a Detach */
1833 #define SIGSTOP_DETACH                  1
1834 /** stop making a child process */
1835 #define SIGSTOP_MAKE_CHILD              2
1836 /** stop spawning a child process */
1837 #define SIGSTOP_SPAWN_CHILD             4
1838 /** stop spawning a child process with a piped log */
1839 #define SIGSTOP_PIPED_LOG_SPAWN         8
1840 /** stop spawning a CGI child process */
1841 #define SIGSTOP_CGI_CHILD               16
1842
1843 /** Macro to get GDB started */
1844 #ifdef DEBUG_SIGSTOP
1845 extern int raise_sigstop_flags;
1846 #define RAISE_SIGSTOP(x)        do { \
1847         if (raise_sigstop_flags & SIGSTOP_##x) raise(SIGSTOP);\
1848     } while (0)
1849 #else
1850 #define RAISE_SIGSTOP(x)
1851 #endif
1852 /** @} */
1853 /**
1854  * Get HTML describing the address and (optionally) admin of the server.
1855  * @param prefix Text which is prepended to the return value
1856  * @param r The request_rec
1857  * @return HTML describing the server, allocated in @a r's pool.
1858  */
1859 AP_DECLARE(const char *) ap_psignature(const char *prefix, request_rec *r);
1860
1861 /** strtoul does not exist on sunos4. */
1862 #ifdef strtoul
1863 #undef strtoul
1864 #endif
1865 #define strtoul strtoul_is_not_a_portable_function_use_strtol_instead
1866
1867   /* The C library has functions that allow const to be silently dropped ...
1868      these macros detect the drop in maintainer mode, but use the native
1869      methods for normal builds
1870
1871      Note that on some platforms (e.g., AIX with gcc, Solaris with gcc), string.h needs 
1872      to be included before the macros are defined or compilation will fail.
1873   */
1874 #include <string.h>
1875
1876 AP_DECLARE(char *) ap_strchr(char *s, int c);
1877 AP_DECLARE(const char *) ap_strchr_c(const char *s, int c);
1878 AP_DECLARE(char *) ap_strrchr(char *s, int c);
1879 AP_DECLARE(const char *) ap_strrchr_c(const char *s, int c);
1880 AP_DECLARE(char *) ap_strstr(char *s, const char *c);
1881 AP_DECLARE(const char *) ap_strstr_c(const char *s, const char *c);
1882
1883 #ifdef AP_DEBUG
1884
1885 #undef strchr
1886 # define strchr(s, c)   ap_strchr(s,c)
1887 #undef strrchr
1888 # define strrchr(s, c)  ap_strrchr(s,c)
1889 #undef strstr
1890 # define strstr(s, c)  ap_strstr(s,c)
1891
1892 #else
1893
1894 /** use this instead of strchr */
1895 # define ap_strchr(s, c)        strchr(s, c)
1896 /** use this instead of strchr */
1897 # define ap_strchr_c(s, c)      strchr(s, c)
1898 /** use this instead of strrchr */
1899 # define ap_strrchr(s, c)       strrchr(s, c)
1900 /** use this instead of strrchr */
1901 # define ap_strrchr_c(s, c)     strrchr(s, c)
1902 /** use this instead of strrstr*/
1903 # define ap_strstr(s, c)        strstr(s, c)
1904 /** use this instead of strrstr*/
1905 # define ap_strstr_c(s, c)      strstr(s, c)
1906
1907 #endif
1908
1909 #define AP_NORESTART            APR_OS_START_USEERR + 1
1910
1911 #ifdef __cplusplus
1912 }
1913 #endif
1914
1915 #endif  /* !APACHE_HTTPD_H */
1916
1917 /** @} //APACHE Daemon      */
1918 /** @} //APACHE Core        */
1919 /** @} //APACHE super group */
1920