| 834 | } |
| 835 | |
| 836 | bool FTPProfile::ValidType(const TCHAR * type) const { |
| 837 | if (!type) |
| 838 | return false; |
| 839 | |
| 840 | if (lstrlen(type) < 2) |
| 841 | return false; |
| 842 | |
| 843 | if (type[0] != TEXT('.')) |
| 844 | return false; |
| 845 | |
| 846 | return true; |
| 847 | } |
| 848 | |
| 849 | int FTPProfile::ExpandTypeVector(tstring types, bool isAscii) { |
| 850 | const tstring delimiter = TEXT("|"); |
nothing calls this directly
no outgoing calls
no test coverage detected