| 536 | } |
| 537 | |
| 538 | BOOL FtpSSLWrapper::SendFileStatus(long bytesSent) { |
| 539 | BOOL res = CUT_FTPClient::SendFileStatus(bytesSent); |
| 540 | if (res == FALSE) |
| 541 | return res; |
| 542 | |
| 543 | if (m_progmon) |
| 544 | m_progmon->OnDataSent(bytesSent, m_currentTotal); |
| 545 | |
| 546 | return res; |
| 547 | } |
| 548 | |
| 549 | BOOL FtpSSLWrapper::IsAborted() { |
| 550 | return m_isAborted; |
nothing calls this directly
no test coverage detected