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

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