| 50 | } |
| 51 | |
| 52 | bool http_servlet::doPost(request_t& req, response_t& res) |
| 53 | { |
| 54 | const char* path = req.getPathInfo(); |
| 55 | handler_t handler = path && *path ? handlers_[path] : NULL; |
| 56 | return handler ? (this->*handler)(req, res) : transfer_post(req, res); |
| 57 | } |
| 58 | |
| 59 | bool http_servlet::on_hello(request_t& req, response_t& res) |
| 60 | { |
nothing calls this directly
no test coverage detected