| 318 | } |
| 319 | |
| 320 | bool ipc_client::open_callback(void) |
| 321 | { |
| 322 | // ���ӳɹ�������IO��д�ص����� |
| 323 | async_stream_->add_read_callback(this); |
| 324 | async_stream_->add_write_callback(this); |
| 325 | |
| 326 | // ֪ͨ����������Ϣ�������ɹ� |
| 327 | on_open(); |
| 328 | |
| 329 | // ���� true ��ʾ�����첽���� |
| 330 | return true; |
| 331 | } |
| 332 | |
| 333 | } // namespace acl |
no test coverage detected