| 76 | } |
| 77 | |
| 78 | void DHTInteractionCommand::setReadCheckSocket( |
| 79 | const std::shared_ptr<SocketCore>& socket) |
| 80 | { |
| 81 | readCheckSocket_ = socket; |
| 82 | if (socket) { |
| 83 | e_->addSocketForReadCheck(socket, this); |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | void DHTInteractionCommand::disableReadCheckSocket( |
| 88 | const std::shared_ptr<SocketCore>& socket) |
nothing calls this directly
no test coverage detected