| 22 | } |
| 23 | |
| 24 | int HttpConnection::open(void* x) |
| 25 | { |
| 26 | relay_http_meta_discovery_ = static_cast<RelayHttpMetaDiscovery*>(x); |
| 27 | |
| 28 | if (HANDLER_ERROR == reactor()->register_handler(this, READ_MASK)) { |
| 29 | return HANDLER_ERROR; |
| 30 | } |
| 31 | return HANDLER_OK; |
| 32 | } |
| 33 | |
| 34 | int HttpConnection::handle_input(ACE_HANDLE) |
| 35 | { |
nothing calls this directly
no test coverage detected