| 289 | } |
| 290 | |
| 291 | TStringBuf GetOnlyHost(const TStringBuf url Y_LIFETIME_BOUND) noexcept { |
| 292 | return GetHost(CutSchemePrefix(url)); |
| 293 | } |
| 294 | |
| 295 | TStringBuf GetPathAndQuery(const TStringBuf url Y_LIFETIME_BOUND, bool trimFragment) noexcept { |
| 296 | const size_t off = url.find('/', GetHttpPrefixSize(url)); |
nothing calls this directly
no test coverage detected