| 143 | dns_service::~dns_service(void) {} |
| 144 | |
| 145 | void dns_service::on_accept(aio_socket_stream* client) |
| 146 | { |
| 147 | ipc_client* ipc = NEW dns_ipc(this, magic_); |
| 148 | ipc->open(client); |
| 149 | |
| 150 | // ������Ϣ�ص����� |
| 151 | ipc->append_message(IPC_RES); |
| 152 | ipc->wait(); |
| 153 | } |
| 154 | |
| 155 | #ifdef ACL_WINDOWS |
| 156 |
nothing calls this directly
no test coverage detected