| 901 | } |
| 902 | |
| 903 | bool FtpNegotiationCommand::waitConnection() |
| 904 | { |
| 905 | disableReadCheckSocket(); |
| 906 | setReadCheckSocket(getSocket()); |
| 907 | dataSocket_ = serverSocket_->acceptConnection(); |
| 908 | sequence_ = SEQ_NEGOTIATION_COMPLETED; |
| 909 | return false; |
| 910 | } |
| 911 | |
| 912 | bool FtpNegotiationCommand::processSequence( |
| 913 | const std::shared_ptr<Segment>& segment) |
nothing calls this directly
no test coverage detected