| 17239 | } |
| 17240 | |
| 17241 | bool ada_set_password(ada_url result, const char* input, |
| 17242 | size_t length) noexcept { |
| 17243 | ada::result<ada::url_aggregator>& r = get_instance(result); |
| 17244 | if (!r) { |
| 17245 | return false; |
| 17246 | } |
| 17247 | return r->set_password(std::string_view(input, length)); |
| 17248 | } |
| 17249 | |
| 17250 | bool ada_set_port(ada_url result, const char* input, size_t length) noexcept { |
| 17251 | ada::result<ada::url_aggregator>& r = get_instance(result); |
nothing calls this directly
no test coverage detected