MCPcopy Create free account
hub / github.com/acl-dev/acl / fprint_header

Method fprint_header

lib_acl_cpp/src/http/HttpServletRequest.cpp:1059–1069  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1057}
1058
1059void HttpServletRequest::fprint_header(ostream& out, const char* prompt)
1060{
1061 if (client_) {
1062 client_->fprint_header(out, prompt);
1063 } else {
1064 const char* ptr = acl_getenv_list();
1065 if (ptr) {
1066 out.format("%s", ptr);
1067 }
1068 }
1069}
1070
1071void HttpServletRequest::sprint_header(string& out, const char* prompt)
1072{

Callers

nothing calls this directly

Calls 2

acl_getenv_listFunction · 0.85
formatMethod · 0.45

Tested by

no test coverage detected