| 699 | } |
| 700 | |
| 701 | void Stream::StopIdleTimer() { |
| 702 | if (_options.idle_timeout_ms < 0) { |
| 703 | return; |
| 704 | } |
| 705 | if (_idle_timer != 0) { |
| 706 | bthread_timer_del(_idle_timer); |
| 707 | } |
| 708 | } |
| 709 | |
| 710 | void Stream::Close(int error_code, const char* reason_fmt, ...) { |
| 711 | _fake_socket_weak_ref->SetFailed(); |
no test coverage detected