| 14596 | } |
| 14597 | |
| 14598 | [[nodiscard]] std::string_view url_aggregator::get_password() const noexcept |
| 14599 | ada_lifetime_bound { |
| 14600 | ada_log("url_aggregator::get_password"); |
| 14601 | if (has_non_empty_password()) { |
| 14602 | return helpers::substring(buffer, components.username_end + 1, |
| 14603 | components.host_start); |
| 14604 | } |
| 14605 | return ""; |
| 14606 | } |
| 14607 | |
| 14608 | [[nodiscard]] std::string_view url_aggregator::get_port() const noexcept |
| 14609 | ada_lifetime_bound { |
no outgoing calls
no test coverage detected