| 90 | } |
| 91 | |
| 92 | void http_rpc::rpc_onover() |
| 93 | { |
| 94 | // ���� rpc ���� |
| 95 | rpc_del(); |
| 96 | |
| 97 | if (keep_alive_) |
| 98 | { |
| 99 | rpc_read_wait_add(); |
| 100 | |
| 101 | // ����첽���Ƿ�ɶ� |
| 102 | client_->read_wait(10); |
| 103 | } |
| 104 | else |
| 105 | // �ر��첽������ |
| 106 | client_->close(); |
| 107 | } |
nothing calls this directly
no test coverage detected