| 17221 | } |
| 17222 | |
| 17223 | bool ada_set_protocol(ada_url result, const char* input, |
| 17224 | size_t length) noexcept { |
| 17225 | ada::result<ada::url_aggregator>& r = get_instance(result); |
| 17226 | if (!r) { |
| 17227 | return false; |
| 17228 | } |
| 17229 | return r->set_protocol(std::string_view(input, length)); |
| 17230 | } |
| 17231 | |
| 17232 | bool ada_set_username(ada_url result, const char* input, |
| 17233 | size_t length) noexcept { |
nothing calls this directly
no test coverage detected