| 525 | } |
| 526 | |
| 527 | BOOL FtpSSLWrapper::ReceiveFileStatus(long bytesReceived) { |
| 528 | BOOL res = CUT_FTPClient::ReceiveFileStatus(bytesReceived); |
| 529 | if (res == FALSE) |
| 530 | return res; |
| 531 | |
| 532 | if (m_progmon) |
| 533 | m_progmon->OnDataReceived(bytesReceived, m_currentTotal); |
| 534 | |
| 535 | return res; |
| 536 | } |
| 537 | |
| 538 | BOOL FtpSSLWrapper::SendFileStatus(long bytesSent) { |
| 539 | BOOL res = CUT_FTPClient::SendFileStatus(bytesSent); |
nothing calls this directly
no test coverage detected