Stupid winsock needs special way to close sockets.
[dftpd.git] / AuthNone.hpp
blob05ed29a9a6c4a0d970355f0852a917fe0a94a54f
1 #ifndef __DFTPD__AUTHNONE_HPP__
2 #define __DFTPD__AUTHNONE_HPP__
4 #include "Auth.hpp"
6 class AuthNone : public Auth
8 public:
9 bool Login( const std::string& login );
10 bool Password( const std::string& login, const std::string& password );
11 std::string GetRoot( const std::string& login );
14 #endif