| 52 | namespace aria2 { |
| 53 | |
| 54 | LpdReceiveMessageCommand::LpdReceiveMessageCommand( |
| 55 | cuid_t cuid, const std::shared_ptr<LpdMessageReceiver>& receiver, |
| 56 | DownloadEngine* e) |
| 57 | : Command(cuid), receiver_(receiver), e_(e) |
| 58 | { |
| 59 | e_->addSocketForReadCheck(receiver_->getSocket(), this); |
| 60 | } |
| 61 | |
| 62 | LpdReceiveMessageCommand::~LpdReceiveMessageCommand() |
| 63 | { |
nothing calls this directly
no test coverage detected