| 331 | } |
| 332 | |
| 333 | bool FTPClientWrapperSSL::IsConnected() { |
| 334 | if (!m_connected) |
| 335 | return false; |
| 336 | |
| 337 | bool clientconnected = m_client.IsConnected() == TRUE; |
| 338 | if (!clientconnected) { |
| 339 | Disconnect(); //thought to be connected, but not anymore, disconnect |
| 340 | return false; |
| 341 | } |
| 342 | |
| 343 | return true; |
| 344 | } |
| 345 | |
| 346 | int FTPClientWrapperSSL::Abort() { |
| 347 | int ret = FTPClientWrapper::Abort(); |
nothing calls this directly
no outgoing calls
no test coverage detected