22 lines
372 B
C++
22 lines
372 B
C++
#ifndef ____SMTP_QUIT_h__
|
|
# define ____SMTP_QUIT_h__
|
|
|
|
# include "SMTPCommand.h"
|
|
# include "SMTPSession.h"
|
|
|
|
namespace mail {
|
|
|
|
class SMTPServer;
|
|
|
|
class __SMTP_QUIT : public SMTPCommand {
|
|
|
|
public:
|
|
|
|
int processCommand(coreutils::PString request, SMTPSession &session, SMTPServer &server, std::stringstream &data);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|