MCPcopy Create free account
hub / github.com/apache/trafficserver / scheme_get

Method scheme_get

include/proxy/hdrs/URL.h:524–531  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

522 -------------------------------------------------------------------------*/
523
524inline const std::string_view
525URL::scheme_get()
526{
527 ink_assert(valid());
528 int length;
529 const char *scheme = m_url_impl->get_scheme(&length);
530 return std::string_view{scheme, static_cast<size_t>(length)};
531}
532
533inline const char *
534URL::scheme_get(int *length)

Callers 6

redirect_requestMethod · 0.45
remap_parse_config_btiFunction · 0.45
_regexMappingLookupMethod · 0.45
forl_LLFunction · 0.45

Calls 3

get_schemeMethod · 0.80
sizeMethod · 0.45
dataMethod · 0.45

Tested by

no test coverage detected