diff options
author | Rainer Jung <rjung@apache.org> | 2016-10-16 01:07:52 +0200 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2016-10-16 01:07:52 +0200 |
commit | 57817b058aa96d7ce8fedd6586f860696bc71279 (patch) | |
tree | 64166514ddd4f076dd7bcd8c3bafd4537ee220de /include | |
parent | Rebuild. (diff) | |
download | apache2-57817b058aa96d7ce8fedd6586f860696bc71279.tar.xz apache2-57817b058aa96d7ce8fedd6586f860696bc71279.zip |
Followup to r1764961:
- ap_scan_http_uri_safe() was removed
- ap_scan_vchar_obstext() was introduced
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1765112 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/httpd.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/httpd.h b/include/httpd.h index 4defe1b513..859318677b 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -1647,12 +1647,10 @@ AP_DECLARE(const char *) ap_scan_http_field_content(const char *ptr); */ AP_DECLARE(const char *) ap_scan_http_token(const char *ptr); -/* Scan a string for valid URI characters per RFC3986, and - * return a pointer to the first non-URI character encountered. - * @param ptr The string to scan - * @return A pointer to the first non-token character. +/* Scan a string for visible ASCII (0x21-0x7E) or obstext (0x80+) + * and return a pointer to the first ctrl/space character encountered. */ -AP_DECLARE(const char *) ap_scan_http_uri_safe(const char *ptr); +AP_DECLARE(const char *) ap_scan_vchar_obstext(const char *ptr) /* Retrieve a token, advancing the pointer to the first non-token character * and returning a copy of the token string. |