| 26 | namespace dena { |
| 27 | |
| 28 | struct worker_throbj { |
| 29 | worker_throbj(const hstcpsvr_worker_arg& arg) |
| 30 | : worker(hstcpsvr_worker_i::create(arg)) { } |
| 31 | void operator ()() { |
| 32 | worker->run(); |
| 33 | } |
| 34 | hstcpsvr_worker_ptr worker; |
| 35 | }; |
| 36 | |
| 37 | struct hstcpsvr : public hstcpsvr_i, private noncopyable { |
| 38 | hstcpsvr(const config& c); |
nothing calls this directly
no outgoing calls
no test coverage detected