| 7822 | // build a (status_code) response based upon the given info |
| 7823 | |
| 7824 | void |
| 7825 | HttpTransact::build_response(State *s, HTTPHdr *base_response, HTTPHdr *outgoing_response, HTTPVersion outgoing_version) |
| 7826 | { |
| 7827 | build_response(s, base_response, outgoing_response, outgoing_version, HTTP_STATUS_NONE, nullptr); |
| 7828 | return; |
| 7829 | } |
| 7830 | |
| 7831 | void |
| 7832 | HttpTransact::build_response(State *s, HTTPHdr *outgoing_response, HTTPVersion outgoing_version, HTTPStatus status_code, |
nothing calls this directly
no test coverage detected