| 16 | } |
| 17 | |
| 18 | void http_servlet::logger_request(acl::HttpServletRequest& req) |
| 19 | { |
| 20 | acl::string req_hdr; |
| 21 | acl::http_client* client = req.getClient(); |
| 22 | client->sprint_header(req_hdr, NULL); |
| 23 | out_.format("\r\n>>>request header<<<\r\n"); |
| 24 | out_.write(req_hdr); |
| 25 | out_.format("\r\n"); |
| 26 | } |
| 27 | |
| 28 | bool http_servlet::doError(acl::HttpServletRequest& req, |
| 29 | acl::HttpServletResponse& res) |
nothing calls this directly
no test coverage detected