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