| 94 | } |
| 95 | |
| 96 | td::Status do_loop() { |
| 97 | TRY_STATUS(loop_read("left", left_inner_)); |
| 98 | // LOG(INFO) << "left=" << left_ssl_.input_buffer().size(); |
| 99 | TRY_STATUS(run()); |
| 100 | TRY_STATUS(loop_write("left", left_inner_)); |
| 101 | return td::Status::OK(); |
| 102 | } |
| 103 | |
| 104 | void loop() override { |
| 105 | if (auto s = do_loop(); s.is_error()) { |
nothing calls this directly
no test coverage detected