Scan a string for HTTP VCHAR/obs-text characters including HT and SP * (as used in header values, for example, in RFC 7230 section 3.2) * returning the pointer to the first non-HT ASCII ctrl character. */
| 1652 | * returning the pointer to the first non-HT ASCII ctrl character. |
| 1653 | */ |
| 1654 | AP_DECLARE(const char *) ap_scan_http_field_content(const char *ptr) |
| 1655 | { |
| 1656 | for ( ; !TEST_CHAR(*ptr, T_HTTP_CTRLS); ++ptr) ; |
| 1657 | |
| 1658 | return ptr; |
| 1659 | } |
| 1660 | |
| 1661 | /* Scan a string for HTTP token characters, returning the pointer to |
| 1662 | * the first non-token character. |
no outgoing calls
no test coverage detected