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

Method wireStr

src/tscpp/api/Headers.cc:698–710  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

696}
697
698std::string
699Headers::wireStr()
700{
701 string retval;
702 for (auto &&iter : *this) {
703 HeaderField hf = iter;
704 retval += hf.name().str();
705 retval += ": ";
706 retval += hf.values(", ");
707 retval += "\r\n";
708 }
709 return retval;
710}
711
712std::ostream &
713operator<<(std::ostream &os, atscppapi::Headers &obj)

Callers 1

runMethod · 0.80

Calls 3

valuesMethod · 0.80
strMethod · 0.45
nameMethod · 0.45

Tested by

no test coverage detected