| 556 | } |
| 557 | |
| 558 | int FTPProfile::GetCacheLocal(const char * externalfile, TCHAR* localbuffer, int localbuffersize) const { |
| 559 | if (!localbuffer || localbuffersize == 0) |
| 560 | return -1; |
| 561 | |
| 562 | return m_cache->GetLocalPathFromExternal(externalfile, localbuffer, localbuffersize); |
| 563 | } |
| 564 | |
| 565 | FTPCache* FTPProfile::GetCache() const { |
| 566 | return m_cache; |
no test coverage detected