Store username in Session.
[dftpd.git] / AuthNone.hpp
blobd865e41207eefafc997a06bb3cfc22e4ac4e0630
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& password );
13 #endif