IORoutine begin
| 75 | |
| 76 | //IORoutine begin |
| 77 | IORoutine::IORoutine(IORoutineMgr * routine_mgr) : |
| 78 | req_uniq_id_(0), |
| 79 | io_routine_mgr_(routine_mgr), |
| 80 | io_router_(nullptr), |
| 81 | io_channel_(nullptr), |
| 82 | proxy_protocol_handler_(nullptr), |
| 83 | client_fd_(-1), |
| 84 | sqlsvr_fd_(-1) { |
| 85 | } |
| 86 | |
| 87 | IORoutine::~IORoutine() { |
| 88 | ReleaseFD(client_fd_); |
nothing calls this directly
no outgoing calls
no test coverage detected