summaryrefslogtreecommitdiff
path: root/fpcsrc/packages/httpd24/src/http_core.inc
blob: df9c7189f65734f062836ebbe9e4c24c2ba03eba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
{* Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *}

(**
 * @file  http_core.h
 * @brief CORE HTTP Daemon
 *
 * @defgroup APACHE_CORE_HTTPD Core HTTP Daemon
 * @ingroup  APACHE_CORE
 * @{
 *)

//#ifndef APACHE_HTTP_CORE_H
//#define APACHE_HTTP_CORE_H

//#include "apr.h"
//#include "apr_hash.h"
//#include "apr_optional.h"
{$include util_filter.inc}
{$include ap_expr.inc}
//#include "apr_tables.h"

//#include "http_config.h"

//#if APR_HAVE_STRUCT_RLIMIT
//#include <sys/time.h>
//#include <sys/resource.h>
//#endif


{* ****************************************************************
 *
 * The most basic server code is encapsulated in a single module
 * known as the core, which is just *barely* functional enough to
 * serve documents, though not terribly well.
 *
 * Largely for NCSA back-compatibility reasons, the core needs to
 * make pieces of its config structures available to other modules.
 * The accessors are declared here, along with the interpretation
 * of one of them (allow_options).
 *}

(**
 * @defgroup APACHE_CORE_HTTPD_ACESSORS Acessors
 *
 * @brief File/Directory Accessor directives
 *
 * @{
 *)
const
//** No directives */
  OPT_NONE          = 0;
//** Indexes directive */
  OPT_INDEXES       = 1;
//** SSI is enabled without exec= permission  */
  OPT_INCLUDES      = 2;
//**  FollowSymLinks directive */
  OPT_SYM_LINKS     = 4;
//**  ExecCGI directive */
  OPT_EXECCGI       = 8;
//**  directive unset */
  OPT_UNSET         = 16;
//**  SSI exec= permission is permitted, iff OPT_INCLUDES is also set */
  OPT_INC_WITH_EXEC = 32;
//** SymLinksIfOwnerMatch directive */
  OPT_SYM_OWNER     = 64;
//** MultiViews directive */
  OPT_MULTI         = 128;
//**  All directives */
  OPT_ALL           = (OPT_INDEXES or OPT_INCLUDES or OPT_INC_WITH_EXEC or OPT_SYM_LINKS or OPT_EXECCGI);
(** @} *)

(**
 * @defgroup get_remote_host Remote Host Resolution
 * @ingroup APACHE_CORE_HTTPD
 * @{
 *)
{** REMOTE_HOST returns the hostname, or NULL if the hostname
 * lookup fails.  It will force a DNS lookup according to the
 * HostnameLookups setting.
 *}
  REMOTE_HOST = 0;

{** REMOTE_NAME returns the hostname, or the dotted quad if the
 * hostname lookup fails.  It will force a DNS lookup according
 * to the HostnameLookups setting.
 *}
  REMOTE_NAME = 1;

{** REMOTE_NOLOOKUP is like REMOTE_NAME except that a DNS lookup is
 * never forced.
 *}
  REMOTE_NOLOOKUP = 2;

{** REMOTE_DOUBLE_REV will always force a DNS lookup, and also force
 * a double reverse lookup, regardless of the HostnameLookups
 * setting.  The result is the (double reverse checked) hostname,
 * or NULL if any of the lookups fail.
 *}
  REMOTE_DOUBLE_REV = 3;

(** @} // get_remote_host *)

//** all of the requirements must be met */
  SATISFY_ALL = 0;
//**  any of the requirements must be met */
  SATISFY_ANY = 1;
//** There are no applicable satisfy lines */
  SATISFY_NOSPEC = 2;

{** Make sure we don't write less than 8000 bytes at any one time.
 *}
  AP_MIN_BYTES_TO_WRITE  = 8000;

//** default maximum of internal redirects */
  AP_DEFAULT_MAX_INTERNAL_REDIRECTS  = 10;

//** default maximum subrequest nesting level */
  AP_DEFAULT_MAX_SUBREQ_DEPTH = 10;

(**
 * Retrieve the value of Options for this request
 * @param r The current request
 * @return the Options bitmask
 *)
//AP_DECLARE(int) ap_allow_options(request_rec *r);
function ap_allow_options(r: Prequest_rec): Integer;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_allow_options' + LibSuff4;

{**
 * Retrieve the value of the AllowOverride for this request
 * @param r The current request
 * @return the overrides bitmask
 *}
//AP_DECLARE(int) ap_allow_overrides(request_rec *r);
function ap_allow_overrides(r: Prequest_rec): Integer;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_allow_overrides' + LibSuff4;

{**
 * Retrieve the document root for this server
 * @param r The current request
 * @warning Don't use this!  If your request went through a Userdir, or
 * something like that, it'll screw you.  But it's back-compatible...
 * @return The document root
 *}
//AP_DECLARE(const char *) ap_document_root(request_rec *r);
function ap_document_root(r: Prequest_rec): PChar;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_document_root' + LibSuff4;

{**
 * Lookup the remote client's DNS name or IP address
 * @ingroup get_remote_host
 * @param conn The current connection
 * @param dir_config The directory config vector from the request
 * @param type The type of lookup to perform.  One of:
 * <pre>
 *     REMOTE_HOST returns the hostname, or NULL if the hostname
 *                 lookup fails.  It will force a DNS lookup according to the
 *                 HostnameLookups setting.
 *     REMOTE_NAME returns the hostname, or the dotted quad if the
 *                 hostname lookup fails.  It will force a DNS lookup according
 *                 to the HostnameLookups setting.
 *     REMOTE_NOLOOKUP is like REMOTE_NAME except that a DNS lookup is
 *                     never forced.
 *     REMOTE_DOUBLE_REV will always force a DNS lookup, and also force
 *                   a double reverse lookup, regardless of the HostnameLookups
 *                   setting.  The result is the (double reverse checked)
 *                   hostname, or NULL if any of the lookups fail.
 * </pre>
 * @param str_is_ip unless NULL is passed, this will be set to non-zero on output when an IP address
 *        string is returned
 * @return The remote hostname
 *}
//AP_DECLARE(const char *) ap_get_remote_host(conn_rec *conn, void *dir_config, int type, int *str_is_ip);
function ap_get_remote_host(conn: Pconn_rec; dir_config: Pointer; _type: Integer; str_is_ip: PInteger): PChar;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_get_remote_host' + LibSuff16;

{**
 * Retrieve the login name of the remote user.  Undef if it could not be
 * determined
 * @param r The current request
 * @return The user logged in to the client machine
 *}
//AP_DECLARE(const char *) ap_get_remote_logname(request_rec *r);
function ap_get_remote_logname(r: Prequest_rec): PChar;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_get_remote_logname' + LibSuff4;

{* Used for constructing self-referencing URLs, and things like SERVER_PORT,
 * and SERVER_NAME.
 *}
{**
 * build a fully qualified URL from the uri and information in the request rec
 * @param p The pool to allocate the URL from
 * @param uri The path to the requested file
 * @param r The current request
 * @return A fully qualified URL
 *}
//AP_DECLARE(char *) ap_construct_url(apr_pool_t *p, const char *uri, request_rec *r);
function ap_construct_url(p: Papr_pool_t; const uri: PChar; r: Prequest_rec): PChar;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_construct_url' + LibSuff12;

{**
 * Get the current server name from the request
 * @param r The current request
 * @return the server name
 *}
//AP_DECLARE(const char *) ap_get_server_name(request_rec *r);
function ap_get_server_name(r: Prequest_rec): PChar;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_get_server_name' + LibSuff4;

{**
 * Get the current server name from the request for the purposes
 * of using in a URL.  If the server name is an IPv6 literal
 * address, it will be returned in URL format (e.g., "[fe80::1]").
 * @param r The current request
 * @return the server name
 *}
//AP_DECLARE(const char *) ap_get_server_name_for_url(request_rec *r);
function ap_get_server_name_for_url(r: Prequest_rec): PChar;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_get_server_name_for_url' + LibSuff4;

{**
 * Get the current server port
 * @param r The current request
 * @return The server's port
 *}
//AP_DECLARE(apr_port_t) ap_get_server_port(const request_rec *r);
function ap_get_server_port(r: Prequest_rec): apr_port_t;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_get_server_port' + LibSuff4;

{**
 * Return the limit on bytes in request msg body
 * @param r The current request
 * @return the maximum number of bytes in the request msg body
 *}
//AP_DECLARE(apr_off_t) ap_get_limit_req_body(const request_rec *r);
function ap_get_limit_req_body(r: Prequest_rec): apr_off_t;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_get_limit_req_body' + LibSuff4;

{**
 * Return the limit on bytes in XML request msg body
 * @param r The current request
 * @return the maximum number of bytes in XML request msg body
 *}
//AP_DECLARE(apr_size_t) ap_get_limit_xml_body(const request_rec *r);
function ap_get_limit_xml_body(r: Prequest_rec): apr_size_t;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_get_limit_xml_body' + LibSuff4;

{**
 * Install a custom response handler for a given status
 * @param r The current request
 * @param status The status for which the custom response should be used
 * @param string The custom response.  This can be a static string, a file
 *               or a URL
 *}
//AP_DECLARE(void) ap_custom_response(request_rec *r, int status, const char *string);
procedure ap_custom_response(r: Prequest_rec; status: Integer; const string_: PChar);
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_custom_response' + LibSuff12;

{**
 * Check if the current request is beyond the configured max. number of redirects or subrequests
 * @param r The current request
 * @return true (is exceeded) or false
 *}
//AP_DECLARE(int) ap_is_recursion_limit_exceeded(const request_rec *r);
function ap_is_recursion_limit_exceeded(const r: Prequest_rec): Integer;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_is_recursion_limit_exceeded' + LibSuff4;

{**
 * Check for a definition from the server command line
 * @param name The define to check for
 * @return 1 if defined, 0 otherwise
 *}
//AP_DECLARE(int) ap_exists_config_define(const char *name);
function ap_exists_config_define(const name: PChar): Integer;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_exists_config_define' + LibSuff4;
//* FIXME! See STATUS about how */
//AP_DECLARE_NONSTD(int) ap_core_translate(request_rec *r);
function ap_core_translate(r: Prequest_rec): Integer; cdecl;
  external LibHTTPD name 'ap_core_translate';

{* Authentication stuff.  This is one of the places where compatibility
 * with the old config files *really* hurts; they don't discriminate at
 * all between different authentication schemes, meaning that we need
 * to maintain common state for all of them in the core, and make it
 * available to the other modules through interfaces.
 *}

//** @see require_line */
//typedef struct require_line require_line;
type
  Prequire_line = ^require_line;
{**
 * @brief A structure to keep track of authorization requirements
*}
  require_line = record
    //** Where the require line is in the config file. */
    method_mask: apr_int64_t;
    //** The complete string from the command line */
    requirement: PChar;
 end;

{**
 * Return the type of authorization required for this request
 * @param r The current request
 * @return The authorization required
 *}
//AP_DECLARE(const char *) ap_auth_type(request_rec *r);
function ap_auth_type(r: Prequest_rec): PChar;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_auth_type' + LibSuff4;

{**
 * Return the current Authorization realm
 * @param r The current request
 * @return The current authorization realm
 *}
//AP_DECLARE(const char *) ap_auth_name(request_rec *r);
function ap_auth_name(r: Prequest_rec): PChar;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_auth_name' + LibSuff4;

{**
 * How the requires lines must be met.
 * @param r The current request
 * @return How the requirements must be met.  One of:
 * <pre>
 *      SATISFY_ANY    -- any of the requirements must be met.
 *      SATISFY_ALL    -- all of the requirements must be met.
 *      SATISFY_NOSPEC -- There are no applicable satisfy lines
 * </pre>
 *}
//AP_DECLARE(int) ap_satisfies(request_rec *r);
function ap_satisfies(r: Prequest_rec): Integer;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_satisfies' + LibSuff4;

{**
 * Core is also unlike other modules in being implemented in more than
 * one file... so, data structures are declared here, even though most of
 * the code that cares really is in http_core.c.  Also, another accessor.
 *}
//AP_DECLARE_DATA extern module core_module;

{**
 * Accessor for core_module's specific data. Equivalent to
 * ap_get_module_config(cv, &core_module) but more efficient.
 * @param cv The vector in which the modules configuration is stored.
 *        usually r->per_dir_config or s->module_config
 * @return The module-specific data
 *}
//AP_DECLARE(void *) ap_get_core_module_config(const ap_conf_vector_t *cv);
{not found in httpd binary libraries, ignored}

{**
 * Accessor to set core_module's specific data. Equivalent to
 * ap_set_module_config(cv, &core_module, val) but more efficient.
 * @param cv The vector in which the modules configuration is stored.
 *        usually r->per_dir_config or s->module_config
 * @param val The module-specific data to set
 *}
//AP_DECLARE(void) ap_set_core_module_config(ap_conf_vector_t *cv, void *val);
{not found in httpd binary libraries, ignored}

{** Get the socket from the core network filter. This should be used instead of
 * accessing the core connection config directly.
 * @param c The connection record
 * @return The socket
 *}
//AP_DECLARE(apr_socket_t *) ap_get_conn_socket(conn_rec *c);
function ap_get_conn_socket(c: Pconn_rec): Integer;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_get_conn_socket' + LibSuff4;

//#ifndef AP_DEBUG
//#define AP_CORE_MODULE_INDEX  0
//#define ap_get_core_module_config(v) \
//    (((void **)(v))[AP_CORE_MODULE_INDEX])
//#define ap_set_core_module_config(v, val) \
//    ((((void **)(v))[AP_CORE_MODULE_INDEX]) = (val))
//#else
//#define AP_CORE_MODULE_INDEX  (AP_DEBUG_ASSERT(core_module.module_index == 0), 0)
//#endif

{**
 * @brief  Per-request configuration
*}
type
  core_request_config = record
    {** bucket brigade used by getline for look-ahead and
     * ap_get_client_block for holding left-over request body *}
    bb: Papr_bucket_brigade;

    {** an array of per-request working data elements, accessed
     * by ID using ap_get_request_note()
     * (Use ap_register_request_note() during initialization
     * to add elements)
     *}
    notes: PPointer;

    {** Custom response strings registered via ap_custom_response(),
     * or NULL; check per-dir config if nothing found here
     *}
    response_code_strings: PPChar; {* from ap_custom_response(), not from
                                    * ErrorDocument
                                    *}

    {** per-request document root of the server. This allows mass vhosting
     * modules better compatibility with some scripts. Normally the
     * context_* info should be used instead *}
    document_root: PChar;

    {*
     * more fine-grained context information which is set by modules like
     * mod_alias and mod_userdir
     *}
    {** the context root directory on disk for the current resource,
     *  without trailing slash
     *}
    context_document_root: PChar;
    {** the URI prefix that corresponds to the context_document_root directory,
     *  without trailing slash
     *}
    context_prefix: PChar;

    {** There is a script processor installed on the output filter chain,
     * so it needs the default_handler to deliver a (script) file into
     * the chain so it can process it. Normally, default_handler only
     * serves files on a GET request (assuming the file is actual content),
     * since other methods are not content-retrieval. This flag overrides
     * that behavior, stating that the "content" is actually a script and
     * won't actually be delivered as the response for the non-GET method.
     *}
    deliver_script: Integer;

    {** Should addition of charset= be suppressed for this request?
     *}
    suppress_charset: Integer;
  end;

{* Standard entries that are guaranteed to be accessible via
 * ap_get_request_note() for each request (additional entries
 * can be added with ap_register_request_note())
 *}
const
  AP_NOTE_DIRECTORY_WALK = 0;
  AP_NOTE_LOCATION_WALK  = 1;
  AP_NOTE_FILE_WALK      = 2;
  AP_NOTE_IF_WALK        = 3;
  AP_NUM_STD_NOTES       = 4;

{**
 * Reserve an element in the core_request_config->notes array
 * for some application-specific data
 * @return An integer key that can be passed to ap_get_request_note()
 *         during request processing to access this element for the
 *         current request.
 *}
//AP_DECLARE(apr_size_t) ap_register_request_note(void);
function ap_register_request_note: apr_size_t;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_register_request_note' + LibSuff0;

{**
 * Retrieve a pointer to an element in the core_request_config->notes array
 * @param r The request
 * @param note_num  A key for the element: either a value obtained from
 *        ap_register_request_note() or one of the predefined AP_NOTE_*
 *        values.
 * @return NULL if the note_num is invalid, otherwise a pointer to the
 *         requested note element.
 * @remark At the start of a request, each note element is NULL.  The
 *         handle provided by ap_get_request_note() is a pointer-to-pointer
 *         so that the caller can point the element to some app-specific
 *         data structure.  The caller should guarantee that any such
 *         structure will last as long as the request itself.
 *}
//AP_DECLARE(void **) ap_get_request_note(request_rec *r, apr_size_t note_num);
 function ap_get_request_note(r: Prequest_rec; note_num: apr_size_t): PPointer;
   {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
   external LibHTTPD name LibNamePrefix + 'ap_get_request_note' + LibSuff8;

type
//typedef unsigned char allow_options_t;
  allow_options_t = cuchar;
//typedef unsigned int overrides_t;
  overrides_t = cuchar;

{*
 * Bits of info that go into making an ETag for a file
 * document.  Why a long?  Because char historically
 * proved too short for Options, and int can be different
 * sizes on different platforms.
 *}
//typedef unsigned long etag_components_t;
  etag_components_t = culong;

const
  ETAG_UNSET    = 0;
  ETAG_NONE     = (1 shl 0);
  ETAG_MTIME    = (1 shl 1);
  ETAG_INODE    = (1 shl 2);
  ETAG_SIZE     = (1 shl 3);
  ETAG_ALL      = (ETAG_MTIME or ETAG_INODE or ETAG_SIZE);
  //* This is the default value used */
  ETAG_BACKWARD = (ETAG_MTIME or ETAG_SIZE);

  //* Hostname resolution etc */
  HOSTNAME_LOOKUP_OFF     = 0;
  HOSTNAME_LOOKUP_ON      = 1;
  HOSTNAME_LOOKUP_DOUBLE  = 2;
  HOSTNAME_LOOKUP_UNSET   = 3;

  USE_CANONICAL_NAME_OFF   = 0;
  USE_CANONICAL_NAME_ON    = 1;
  USE_CANONICAL_NAME_DNS   = 2;
  USE_CANONICAL_NAME_UNSET = 3;

  ADD_DEFAULT_CHARSET_OFF   = 0;
  ADD_DEFAULT_CHARSET_ON    = 1;
  ADD_DEFAULT_CHARSET_UNSET = 2;

  ENABLE_MMAP_OFF    = 0;
  ENABLE_MMAP_ON     = 1;
  ENABLE_MMAP_UNSET  = 2;

  ENABLE_SENDFILE_OFF    = 0;
  ENABLE_SENDFILE_ON     = 1;
  ENABLE_SENDFILE_UNSET  = 2;

  USE_CANONICAL_PHYS_PORT_OFF   = 0;
  USE_CANONICAL_PHYS_PORT_ON    = 1;
  USE_CANONICAL_PHYS_PORT_UNSET = 2;

  AP_CONDITION_IF        = 1;
  AP_CONDITION_ELSE      = 2;
  AP_CONDITION_ELSEIF    = (AP_CONDITION_ELSE or AP_CONDITION_IF);

  AP_MAXRANGES_UNSET     = -1;
  AP_MAXRANGES_DEFAULT   = -2;
  AP_MAXRANGES_UNLIMITED = -3;
  AP_MAXRANGES_NORANGES  =  0;

{**
 * @brief Server Signature Enumeration
 *}
type
  server_signature_e = (
    srv_sig_unset,
    srv_sig_off,
    srv_sig_on,
    srv_sig_withmail
  );

{**
 * @brief Per-directory configuration
 *}
  core_dir_config = record
    //** path of the directory/regex/etc. see also d_is_fnmatch/absolute below */
    d: PChar;
    //** the number of slashes in d */
    d_components: Cardinal;

    {** If (opts & OPT_UNSET) then no absolute assignment to options has
     * been made.
     * invariant: (opts_add & opts_remove) == 0
     * Which said another way means that the last relative (options + or -)
     * assignment made to each bit is recorded in exactly one of opts_add
     * or opts_remove.
     *}
    opts:          allow_options_t;
    opts_add:      allow_options_t;
    opts_remove:   allow_options_t;
    override_:     overrides_t;
    override_opts: allow_options_t;

    {* Custom response config. These can contain text or a URL to redirect to.
     * if response_code_strings is NULL then there are none in the config,
     * if it's not null then it's allocated to sizeof(char*)*RESPONSE_CODES.
     * This lets us do quick merges in merge_core_dir_configs().
     *}

    response_code_strings: PPChar;{* from ErrorDocument, not from
                                   * ap_custom_response() *}

    //* Hostname resolution etc */       {fpc -> consts are moved up}
//#define HOSTNAME_LOOKUP_OFF     0
//#define HOSTNAME_LOOKUP_ON      1
//#define HOSTNAME_LOOKUP_DOUBLE  2
//#define HOSTNAME_LOOKUP_UNSET   3
    flags : cardinal; // takes care of  hostname_lookups, content_md5, use_canonical_name d_is_fnmatch and add_default_charset
//    unsigned int hostname_lookups : 4;

//    unsigned int content_md5 : 2;  //* calculate Content-MD5? */

//#define USE_CANONICAL_NAME_OFF   (0)  {fpc -> consts are moved up}
//#define USE_CANONICAL_NAME_ON    (1)
//#define USE_CANONICAL_NAME_DNS   (2)
//#define USE_CANONICAL_NAME_UNSET (3)
//    unsigned use_canonical_name : 2;

    {* since is_fnmatch(conf->d) was being called so frequently in
     * directory_walk() and its relatives, this field was created and
     * is set to the result of that call.
     *}
//    unsigned d_is_fnmatch : 1;

    {* should we force a charset on any outgoing parameterless content-type?
     * if so, which charset?
     *}
//#define ADD_DEFAULT_CHARSET_OFF   (0)  {fpc -> consts are moved up}
//#define ADD_DEFAULT_CHARSET_ON    (1)
//#define ADD_DEFAULT_CHARSET_UNSET (2)
//    unsigned add_default_charset : 2;
    add_default_charset_name: PChar;

    //* System Resource Control */
{$ifdef RLIMIT_CPU}
    limit_cpu: Prlimit;
{$endif}
{$if defined(RLIMIT_DATA) or defined (RLIMIT_VMEM) or defined(RLIMIT_AS)}
    limit_mem: Prlimit;
{$endif}
{$ifdef RLIMIT_NPROC}
    limit_nproc: Prlimit;
{$endif}
    limit_req_body: apr_off_t;     //* limit on bytes in request msg body */
    limit_xml_body: cLong;         //* limit on bytes in XML request msg body */

    //* logging options */

    server_signature: server_signature_e;

    //* Access control */
    sec_file: Papr_array_header_t;
    sec_if:   Papr_array_header_t;
    r: Pap_regex_t;

    mime_type,                 //* forced with ForceType  */
    handler,                   //* forced with SetHandler */
    output_filters,            //* forced with SetOutputFilters */
    input_filters: PChar;      //* forced with SetInputFilters */
    accept_path_info: Integer; //* forced with AcceptPathInfo */

    {*
     * What attributes/data should be included in ETag generation?
     *}
    etag_bits:   etag_components_t;
    etag_add:    etag_components_t;
    etag_remove: etag_components_t;

    {*
     * Run-time performance tuning
     *}
//#define ENABLE_MMAP_OFF    (0)             {fpc -> consts are moved up}
//#define ENABLE_MMAP_ON     (1)
//#define ENABLE_MMAP_UNSET  (2)
    flags2 : cardinal; // Takes care of   enable_mmap, enable_sendfile, use_canonical_phys_port,
                       //                 allow_encoded_slashes, decode_encoded_slashes and condition_ifelse
//    unsigned int enable_mmap : 2;  //* whether files in this dir can be mmap'ed */

//#define ENABLE_SENDFILE_OFF    (0)         {fpc -> consts are moved up}
//#define ENABLE_SENDFILE_ON     (1)
//#define ENABLE_SENDFILE_UNSET  (2)
//    unsigned int enable_sendfile : 2;  //* files in this dir can be sendfile'ed */

//#define USE_CANONICAL_PHYS_PORT_OFF   (0)  {fpc -> consts are moved up}
//#define USE_CANONICAL_PHYS_PORT_ON    (1)
//#define USE_CANONICAL_PHYS_PORT_UNSET (2)
//    unsigned int use_canonical_phys_port : 2;

//    unsigned int allow_encoded_slashes : 1; {* URLs may contain %2f w/o being
                                             //* pitched indiscriminately *}
//    unsigned int decode_encoded_slashes : 1; //* whether to decode encoded slashes in URLs */

//#define AP_CONDITION_IF        1           {fpc -> consts are moved up}
//#define AP_CONDITION_ELSE      2
//#define AP_CONDITION_ELSEIF    (AP_CONDITION_ELSE|AP_CONDITION_IF)
//    unsigned int condition_ifelse : 2; //* is this an <If>, <ElseIf>, or <Else> */

    condition: Pap_expr_info_t;   //* Conditionally merge <If> sections */

    //** per-dir log config */
    log: Pap_logconf;

    //** Table of directives allowed per AllowOverrideList */
    override_list: Papr_table_t;

//#define AP_MAXRANGES_UNSET     -1          {fpc -> consts are moved up}
//#define AP_MAXRANGES_DEFAULT   -2
//#define AP_MAXRANGES_UNLIMITED -3
//#define AP_MAXRANGES_NORANGES   0
    //** Number of Ranges before returning HTTP_OK. **/
    max_ranges: Integer;
    //** Max number of Range overlaps (merges) allowed **/
    max_overlaps: Integer;
    //** Max number of Range reversals (eg: 200-300, 100-125) allowed **/
    max_reversals: Integer;

  end; {core_dir_config}

//* macro to implement off by default behaviour */
//#define AP_SENDFILE_ENABLED(x) \
//    ((x) == ENABLE_SENDFILE_ON ? APR_SENDFILE_ENABLED : 0)

//* Per-server core configuration */
const
      //* TRACE control */
  AP_TRACE_UNSET    = -1;
  AP_TRACE_DISABLE  =  0;
  AP_TRACE_ENABLE   =  1;
  AP_TRACE_EXTENDED =  2;

type
  core_server_config = record

    gprof_dir: PChar;

    {* Name translations --- we want the core to be able to do *something*
     * so it's at least a minimally functional web server on its own (and
     * can be tested that way).  But let's keep it to the bare minimum:
     *}
    ap_document_root: PChar;

    //* Access control */

    access_name: PChar;
    sec_dir: Papr_array_header_t;
    sec_url: Papr_array_header_t;

    //* recursion backstopper */
    redirect_limit,          //* maximum number of internal redirects */
    subreq_limit: Integer;   //* maximum nesting level of subrequests */

    protocol: PChar;
    accf_map: Papr_table_t;

    //* array of ap_errorlog_format_item for error log format string */
    error_log_format: Papr_array_header_t;
    {*
     * two arrays of arrays of ap_errorlog_format_item for additional information
     * logged to the error log once per connection/request
     *}
    error_log_conn,
    error_log_req: Papr_array_header_t;

    //* TRACE control */
//#define AP_TRACE_UNSET    -1  {fpc -> consts are moved up}
//#define AP_TRACE_DISABLE   0
//#define AP_TRACE_ENABLE    1
//#define AP_TRACE_EXTENDED  2
    trace_enable: Integer;

  end; {core_server_config}

//* for AddOutputFiltersByType in core.c */
//void ap_add_output_filters_by_type(request_rec *r);

//* for http_config.c */
//void ap_core_reorder_directories(apr_pool_t *, server_rec *);

//* for mod_perl */
//AP_CORE_DECLARE(void) ap_add_per_dir_conf(server_rec *s, void *dir_config);
//AP_CORE_DECLARE(void) ap_add_per_url_conf(server_rec *s, void *url_config);
//AP_CORE_DECLARE(void) ap_add_file_conf(apr_pool_t *p, core_dir_config *conf, void *url_config);
//AP_CORE_DECLARE(const char *) ap_add_if_conf(apr_pool_t *p, core_dir_config *conf, void *url_config);
//AP_CORE_DECLARE_NONSTD(const char *) ap_limit_section(cmd_parms *cmd, void *dummy, const char *arg);

//* Core filters; not exported. */
//apr_status_t ap_core_input_filter(ap_filter_t *f, apr_bucket_brigade *b,
//                                  ap_input_mode_t mode, apr_read_type_e block,
//                                  apr_off_t readbytes);
//apr_status_t ap_core_output_filter(ap_filter_t *f, apr_bucket_brigade *b);


//AP_DECLARE(const char*) ap_get_server_protocol(server_rec* s);
//AP_DECLARE(void) ap_set_server_protocol(server_rec* s, const char* proto);

//typedef struct core_output_filter_ctx core_output_filter_ctx_t;
type
  Pcore_output_filter_ctx_t = ^core_output_filter_ctx_t;
  core_output_filter_ctx_t = record end;

//typedef struct core_filter_ctx        core_ctx_t;
  Pcore_filter_ctx_t = ^core_filter_ctx_t;
  core_filter_ctx_t = record end;
  core_ctx_t = core_filter_ctx_t;
  Pcore_ctx_t = ^core_ctx_t;

  core_net_rec = record
    //** Connection to the client */
    client_socket: Papr_socket_t;

    //** connection record */
    c: Pconn_rec;

    out_ctx: Pcore_output_filter_ctx_t;
    in_ctx: Pcore_ctx_t;
  end; {core_net_rec}

{**
 * Insert the network bucket into the core input filter's input brigade.
 * This hook is intended for MPMs or protocol modules that need to do special
 * socket setup.
 * @param c The connection
 * @param bb The brigade to insert the bucket into
 * @param socket The socket to put into a bucket
 * @return AP_DECLINED if the current function does not handle this connection,
 *         APR_SUCCESS or an error otherwise.
 *}
//AP_DECLARE_HOOK(apr_status_t, insert_network_bucket,
//                (conn_rec *c, apr_bucket_brigade *bb, apr_socket_t *socket))
type
  ap_HOOK_insert_network_bucket_t = function(c: Pconn_rec; bb: Papr_bucket_brigade; socket: Papr_socket_t): apr_status_t; cdecl;

procedure ap_hook_insert_network_bucket(pf: ap_HOOK_insert_network_bucket_t;
                                 const aszPre: PPChar; const aszSucc: PPChar; nOrder: Integer);
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_hook_insert_network_bucket' + LibSuff16;

{* ----------------------------------------------------------------------
 *
 * Runtime status/management
 *}

type
  ap_mgmt_type_e = (
    ap_mgmt_type_string,
    ap_mgmt_type_long,
    ap_mgmt_type_hash
  );

  ap_mgmt_value = record
    case Integer of
     0: (s_value: PChar);
     1: (i_value: cLong);
     2: (h_value: Papr_hash_t);
  end;

  ap_mgmt_item_t = record
    description: PChar;
    name: PChar;
    vtype: ap_mgmt_type_e;
    v: ap_mgmt_value;
  end;

///* Handles for core filters */
//extern AP_DECLARE_DATA ap_filter_rec_t *ap_subreq_core_filter_handle;
//extern AP_DECLARE_DATA ap_filter_rec_t *ap_core_output_filter_handle;
//extern AP_DECLARE_DATA ap_filter_rec_t *ap_content_length_filter_handle;
//extern AP_DECLARE_DATA ap_filter_rec_t *ap_core_input_filter_handle;

{**
 * This hook provdes a way for modules to provide metrics/statistics about
 * their operational status.
 *
 * @param p A pool to use to create entries in the hash table
 * @param val The name of the parameter(s) that is wanted. This is
 *            tree-structured would be in the form ('*' is all the tree,
 *            'module.*' all of the module , 'module.foo.*', or
 *            'module.foo.bar' )
 * @param ht The hash table to store the results. Keys are item names, and
 *           the values point to ap_mgmt_item_t structures.
 * @ingroup hooks
 *}
//AP_DECLARE_HOOK(int, get_mgmt_items,
//                (apr_pool_t *p, const char * val, apr_hash_t *ht))
type
  ap_HOOK_get_mgmt_items_t = function(p: Papr_pool_t; const val: PChar; ht: Papr_hash_t): Integer; cdecl;

procedure ap_hook_get_mgmt_items(pf: ap_HOOK_get_mgmt_items_t;
                                 const aszPre: PPChar; const aszSucc: PPChar; nOrder: Integer);
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_hook_get_mgmt_items' + LibSuff16;

//* ---------------------------------------------------------------------- */

{* ----------------------------------------------------------------------
 *
 * I/O logging with mod_logio
 *}

//APR_DECLARE_OPTIONAL_FN(void, ap_logio_add_bytes_out,
//                        (conn_rec *c, apr_off_t bytes));

//APR_DECLARE_OPTIONAL_FN(void, ap_logio_add_bytes_in,
//                        (conn_rec *c, apr_off_t bytes));

//APR_DECLARE_OPTIONAL_FN(apr_off_t, ap_logio_get_last_bytes, (conn_rec *c));

{* ----------------------------------------------------------------------
 *
 * Error log formats
 *}

{**
 * The info structure passed to callback functions of errorlog handlers.
 * Not all information is available in all contexts. In particular, all
 * pointers may be NULL.
 *}
type
  Pap_errorlog_info = ^ap_errorlog_info;
  ap_errorlog_info = record
    {** current server_rec.
     *  Should be preferred over c->base_server and r->server
     *}
    s: Pserver_rec;

    {** current conn_rec.
     *  Should be preferred over r->connecction
     *}
    c: Pconn_rec;

    //** current request_rec. */
    r :Prequest_rec;
    //** r->main if r is a subrequest, otherwise equal to r */
    rmain :Prequest_rec;

    //** pool passed to ap_log_perror, NULL otherwise */
    pool: Papr_pool_t;

    //** name of source file where the log message was produced, NULL if N/A. */
    file_: PChar;
    //** line number in the source file, 0 if N/A */
    line: Integer;

    //** module index of module that produced the log message, APLOG_NO_MODULE if N/A. */
    module_index: Integer;
    //** log level of error message (flags like APLOG_STARTUP have been removed), -1 if N/A */
    level: Integer;

    //** apr error status related to the log message, 0 if no error */
    status: apr_status_t;

    //** 1 if logging to syslog, 0 otherwise */
    using_syslog: Integer;
    //** 1 if APLOG_STARTUP was set for the log message, 0 otherwise */
    startup: Integer;

    //** message format */
    format: PChar;
  end; {ap_errorlog_info}

{**
 * callback function prototype for a external errorlog handler
 * @note To avoid unbounded memory usage, these functions must not allocate
 * memory from the server, connection, or request pools. If an errorlog
 * handler absolutely needs a pool to pass to other functions, it must create
 * and destroy a sub-pool.
 *}
//typedef int ap_errorlog_handler_fn_t(const ap_errorlog_info *info,
//                                     const char *arg, char *buf, int buflen);
type
ap_errorlog_handler_fn_t = function(const info: Pap_errorlog_info;
                                    const arg: PChar; buf: PChar; buflen: Integer):Integer; cdecl;
{**
 * Register external errorlog handler
 * @param p config pool to use
 * @param tag the new format specifier (i.e. the letter after the %)
 * @param handler the handler function
 * @param flags flags (reserved, set to 0)
 *}
//AP_DECLARE(void) ap_register_errorlog_handler(apr_pool_t *p, char *tag,
//                                              ap_errorlog_handler_fn_t *handler,
//                                              int flags);
procedure ap_register_errorlog_handler(p: Papr_pool_t; tag: PChar;
                                       handler: ap_errorlog_handler_fn_t;
                                       flags: Integer);
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_register_errorlog_handler' + LibSuff16;

type
  ap_errorlog_handler = record
      func: ap_errorlog_handler_fn_t;
      flags: Integer; //* for future extensions */
  end; {ap_errorlog_handler}

const
  //** item starts a new field */
  AP_ERRORLOG_FLAG_FIELD_SEP       = 1;
  //** item is the actual error message */
  AP_ERRORLOG_FLAG_MESSAGE         = 2;
  //** skip whole line if item is zero-length */
  AP_ERRORLOG_FLAG_REQUIRED        = 4;
  //** log zero-length item as '-' */
  AP_ERRORLOG_FLAG_NULL_AS_HYPHEN  = 8;

type
  ap_errorlog_format_item = record
    //** ap_errorlog_handler function */
    func: ap_errorlog_handler_fn_t;
    //** argument passed to item in {} */
    arg: PChar;
    //** a combination of the AP_ERRORLOG_* flags */
    flags: cuint;
    //** only log item if the message's log level is higher than this */
    min_loglevel: cuint;
  end; {ap_errorlog_format_item}

{**
 * hook method to log error messages
 * @ingroup hooks
 * @param info pointer to ap_errorlog_info struct which contains all
 *        the details
 * @param errstr the (unformatted) message to log
 * @warning Allocating from the usual pools (pool, info->c->pool, info->p->pool)
 *          must be avoided because it can cause memory leaks.
 *          Use a subpool if necessary.
 *}
//AP_DECLARE_HOOK(void, error_log, (const ap_errorlog_info *info,
//                                  const char *errstr))

//AP_CORE_DECLARE(void) ap_register_log_hooks(apr_pool_t *p);
//AP_CORE_DECLARE(void) ap_register_config_hooks(apr_pool_t *p);

{* ----------------------------------------------------------------------
 *
 * ident lookups with mod_ident
 *}

//APR_DECLARE_OPTIONAL_FN(const char *, ap_ident_lookup,
//                        (request_rec *r));

{* ----------------------------------------------------------------------
 *
 * authorization values with mod_authz_core
 *}

//APR_DECLARE_OPTIONAL_FN(int, authz_some_auth_required, (request_rec *r));
//APR_DECLARE_OPTIONAL_FN(const char *, authn_ap_auth_type, (request_rec *r));
//APR_DECLARE_OPTIONAL_FN(const char *, authn_ap_auth_name, (request_rec *r));

{* ----------------------------------------------------------------------
 *
 * authorization values with mod_access_compat
 *}

//APR_DECLARE_OPTIONAL_FN(int, access_compat_ap_satisfies, (request_rec *r));

//* ---------------------------------------------------------------------- */

{** Query the server for some state information
 * @param query_code Which information is requested
 * @return the requested state information
 *}
//AP_DECLARE(int) ap_state_query(int query_code);
function ap_state_query(query_code: Integer): Integer;
  {$IFDEF WINDOWS} stdcall; {$ELSE} cdecl; {$ENDIF}
  external LibHTTPD name LibNamePrefix + 'ap_state_query' + LibSuff4;

{*
 * possible values for query_code in ap_state_query()
 *}

const
  //** current status of the server */
  AP_SQ_MAIN_STATE        = 0;
  //** are we going to serve requests or are we just testing/dumping config */
  AP_SQ_RUN_MODE          = 1;
  //** generation of the top-level apache parent */
  AP_SQ_CONFIG_GEN        = 2;

{*
 * return values for ap_state_query()
 *}

  //** return value for unknown query_code */
  AP_SQ_NOT_SUPPORTED        = -1;

//* values returned for AP_SQ_MAIN_STATE */
  //** before the config preflight */
  AP_SQ_MS_INITIAL_STARTUP   = 1;
  //** initial configuration run for setting up log config, etc. */
  AP_SQ_MS_CREATE_PRE_CONFIG = 2;
  //** tearing down configuration */
  AP_SQ_MS_DESTROY_CONFIG    = 3;
  //** normal configuration run */
  AP_SQ_MS_CREATE_CONFIG     = 4;
  //** running the MPM */
  AP_SQ_MS_RUN_MPM           = 5;
  //** cleaning up for exit */
  AP_SQ_MS_EXITING           = 6;

//* values returned for AP_SQ_RUN_MODE */
  //** command line not yet parsed */
  AP_SQ_RM_UNKNOWN           = 1;
  //** normal operation (server requests or signal server) */
  AP_SQ_RM_NORMAL            = 2;
  //** config test only */
  AP_SQ_RM_CONFIG_TEST       = 3;
  //** only dump some parts of the config */
  AP_SQ_RM_CONFIG_DUMP       = 4;

//#endif  /* !APACHE_HTTP_CORE_H */
(** @} *)