| 1057 | } |
| 1058 | |
| 1059 | void 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 | |
| 1071 | void HttpServletRequest::sprint_header(string& out, const char* prompt) |
| 1072 | { |
nothing calls this directly
no test coverage detected