]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Followup to r1764961:
authorRainer Jung <rjung@apache.org>
Sat, 15 Oct 2016 23:07:52 +0000 (23:07 +0000)
committerRainer Jung <rjung@apache.org>
Sat, 15 Oct 2016 23:07:52 +0000 (23:07 +0000)
- 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

include/httpd.h

index 4defe1b51328a6a4a1aad9baeacfa8556b166d85..859318677bdbfa6fdf4e4e9f2ddf8bae0ce97c4b 100644 (file)
@@ -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.