| 676 | } |
| 677 | |
| 678 | void Stream::FillSettings(StreamSettings *settings) { |
| 679 | settings->set_stream_id(id()); |
| 680 | settings->set_need_feedback(_cur_buf_size > 0); |
| 681 | settings->set_writable(_options.handler != NULL); |
| 682 | } |
| 683 | |
| 684 | void OnIdleTimeout(void *arg) { |
| 685 | bthread::ExecutionQueueId<butil::IOBuf*> q = { (uint64_t)arg }; |
no test coverage detected