///////////////////////////////////////////////////////
| 202 | |
| 203 | //////////////////////////////////////////////////////////// |
| 204 | Ftp::Response Ftp::disconnect() |
| 205 | { |
| 206 | // Send the exit command |
| 207 | Response response = sendCommand("QUIT"); |
| 208 | if (response.isOk()) |
| 209 | m_commandSocket.disconnect(); |
| 210 | |
| 211 | return response; |
| 212 | } |
| 213 | |
| 214 | |
| 215 | //////////////////////////////////////////////////////////// |
no test coverage detected