Add FTP protocol debugging facilities.
[dftpd.git] / AuthNone.cpp
blob8e16ed064ecea1ccb3836b1607e8fb03dfe04a11
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 #else
18 return "/";
19 #endif