| 505 | } |
| 506 | |
| 507 | int FtpSSLWrapper::GetResponseCode(CUT_WSClient *ws,LPSTR string,int maxlen) { |
| 508 | int res = CUT_FTPClient::GetResponseCode(ws, string, maxlen); |
| 509 | |
| 510 | if (res == 0) { |
| 511 | //OutErr("[FTP] No response from server"); |
| 512 | return res; |
| 513 | } |
| 514 | |
| 515 | int index = 0; |
| 516 | for(;; index++){ |
| 517 | const char * pbuf = GetMultiLineResponse(index); |
| 518 | if(pbuf != NULL) |
| 519 | OutClnt("%T", SU::Utf8ToTChar(pbuf)); |
| 520 | else |
| 521 | break; |
| 522 | } |
| 523 | |
| 524 | return res; |
| 525 | } |
| 526 | |
| 527 | BOOL FtpSSLWrapper::ReceiveFileStatus(long bytesReceived) { |
| 528 | BOOL res = CUT_FTPClient::ReceiveFileStatus(bytesReceived); |
nothing calls this directly
no outgoing calls
no test coverage detected