MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / IsConnected

Method IsConnected

src/FTPClientWrapperSSL.cpp:333–344  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

331}
332
333bool 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
346int FTPClientWrapperSSL::Abort() {
347 int ret = FTPClientWrapper::Abort();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected