Stupid winsock needs special way to close sockets.
[dftpd.git] / AuthNone.cpp
blobe8b98b520b71b5a941e81f8ce252854fbf450424
1 #include "AuthNone.hpp"
3 bool AuthNone::Login( const std::string& login )
5 return true;
8 bool AuthNone::Password( const std::string& login, const std::string& password )
10 return true;
13 std::string AuthNone::GetRoot( const std::string& login )
15 #ifdef SYMBIAN
16 return "E:";
17 #elif defined _WIN32
18 return "C:";
19 #else
20 return "/";
21 #endif