Parser doesn't clear URL first, so if you parse over a non-clear URL, the resulting URL may contain some of the previous data. */
| 743 | |
| 744 | */ |
| 745 | inline ParseResult |
| 746 | URL::parse_no_host_check(std::string_view url) |
| 747 | { |
| 748 | ink_assert(valid()); |
| 749 | const char *start = url.data(); |
| 750 | const char *end = url.data() + url.length(); |
| 751 | return url_parse(m_heap, m_url_impl, &start, end, COPY_STRINGS, !USE_STRICT_URI_PARSING, !VERIFY_HOST_CHARACTERS); |
| 752 | } |
| 753 | |
| 754 | /** |
| 755 | Parser doesn't clear URL first, so if you parse over a non-clear URL, |