21 lines
339 B
C++
21 lines
339 B
C++
#ifndef __POP3Session_h__
|
|
#define __POP3Session_h__
|
|
|
|
namespace mail {
|
|
|
|
class POP3Session : public core::TCPSession {
|
|
|
|
public:
|
|
std::string clientDomainName;
|
|
std::string userName;
|
|
std::string password;
|
|
AuthState authstate = USER_UNKNOWN;
|
|
bool relay = false;
|
|
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|