| 50 | } |
| 51 | |
| 52 | bool master_service::thread_on_accept(acl::socket_stream* conn) |
| 53 | { |
| 54 | logger_debug(DEBUG_HTTP, 2, "connect from %s, fd: %d", |
| 55 | conn->get_peer(true), conn->sock_handle()); |
| 56 | conn->set_rw_timeout(5); |
| 57 | return true; |
| 58 | } |
| 59 | |
| 60 | bool master_service::thread_on_timeout(acl::socket_stream* conn) |
| 61 | { |
nothing calls this directly
no test coverage detected