15 lines
264 B
C++
15 lines
264 B
C++
#ifndef ____SMTP_RSET_h__
|
|
#define ____SMTP_RSET_h__
|
|
|
|
#include "SMTPCommand.h"
|
|
|
|
namespace mail {
|
|
|
|
class __SMTP_RSET : public SMTPCommand {
|
|
int processCommand(coreutils::ZString &request, SMTPSession &session, SMTPServer &server) override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|