* core_server_config
* 20160629.1 (2.5.0-dev) Dropped http_whitespace from core_server_config
* 20160629.2 (2.5.0-dev) Replaced fold w/multiple flags for ap_[r]getline()
+ * 20160629.3 (2.5.0-dev) Dropped ap_has_cntrls(), ap_scan_http_uri_safe()
+ * and http_stricturi member/directive.
+ * Added ap_scan_vchar_obstext()
*/
#define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */
#define AP_HTTP_METHODS_REGISTERED 2
char http_methods;
-#define AP_HTTP_URI_UNSET 0
-#define AP_HTTP_URI_UNSAFE 1
-#define AP_HTTP_URI_STRICT 2
- char http_stricturi;
-
#define AP_HTTP_CL_HEAD_ZERO_UNSET 0
#define AP_HTTP_CL_HEAD_ZERO_ENABLE 1
#define AP_HTTP_CL_HEAD_ZERO_DISABLE 2
#define AP_HTTP_EXPECT_STRICT_DISABLE 2
int http_expect_strict;
-
apr_array_header_t *protocols;
int protocols_honor_order;
int async_filter;
AP_DECLARE(const char *) ap_scan_http_token(const char *ptr);
/* Scan a string for visible ASCII (0x21-0x7E) or obstext (0x80+)
- * and return a pointer to the first ctrl/space character encountered.
+ * and return a pointer to the first SP/CTL/NUL character encountered.
+ * @param ptr The string to scan
+ * @return A pointer to the first SP/CTL character.
*/
AP_DECLARE(const char *) ap_scan_vchar_obstext(const char *ptr);