MCPcopy Create free account
hub / github.com/apache/httpd / ap_scan_vchar_obstext

Function ap_scan_vchar_obstext

server/util.c:1674–1679  ·  view source on GitHub ↗

Scan a string for visible ASCII (0x21-0x7E) or obstext (0x80+) * and return a pointer to the first ctrl/space character encountered. */

Source from the content-addressed store, hash-verified

1672 * and return a pointer to the first ctrl/space character encountered.
1673 */
1674AP_DECLARE(const char *) ap_scan_vchar_obstext(const char *ptr)
1675{
1676 for ( ; TEST_CHAR(*ptr, T_VCHAR_OBSTEXT); ++ptr) ;
1677
1678 return ptr;
1679}
1680
1681/* Retrieve a token, spacing over it and returning a pointer to
1682 * the first non-white byte afterwards. Note that these tokens

Callers 9

check_headerFunction · 0.85
proxy_http_canonFunction · 0.85
uwsgi_canonFunction · 0.85
proxy_wstunnel_canonFunction · 0.85
proxy_ajp_canonFunction · 0.85
hook_uri2fileFunction · 0.85
hook_fixupFunction · 0.85
proxy_http2_canonFunction · 0.85
ap_parse_request_lineFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected