BARANTMail/__SMTP_QUIT.h
2022-07-08 19:30:00 -07:00

19 lines
314 B
C++

#ifndef ____SMTP_QUIT_h__
# define ____SMTP_QUIT_h__
# include "SMTPCommand.h"
namespace mail {
class SMTPServer;
class __SMTP_QUIT : public SMTPCommand {
public:
int processCommand(coreutils::ZString &request, SMTPSession &session, SMTPServer &server) override;
};
}
#endif