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

Method url_print

src/proxy/hdrs/HTTP.cc:1859–1871  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1857}
1858
1859int
1860HTTPHdr::url_print(char *buff, int length, int *offset, int *skip, unsigned normalization_flags)
1861{
1862 ink_release_assert(offset);
1863 ink_release_assert(skip);
1864
1865 int zret = 0;
1866 UrlPrintHack hack(this);
1867 if (hack.is_valid()) {
1868 zret = m_url_cached.print(buff, length, offset, skip, normalization_flags);
1869 }
1870 return zret;
1871}
1872
1873int
1874HTTPHdr::url_printed_length(unsigned normalization_flags)

Callers 3

updateVectorMethod · 0.80
update_statsMethod · 0.80

Calls 2

is_validMethod · 0.45
printMethod · 0.45

Tested by

no test coverage detected