| 6709 | inline void url::update_base_hostname(std::string_view input) { host = input; } |
| 6710 | |
| 6711 | inline void url::update_unencoded_base_hash(std::string_view input) { |
| 6712 | // We do the percent encoding |
| 6713 | hash = unicode::percent_encode(input, |
| 6714 | ada::character_sets::FRAGMENT_PERCENT_ENCODE); |
| 6715 | } |
| 6716 | |
| 6717 | inline void url::update_base_search(std::string_view input, |
| 6718 | const uint8_t query_percent_encode_set[]) { |
no test coverage detected