17 lines
292 B
C++
17 lines
292 B
C++
#ifndef ____SMTP_RSET_h__
|
|
#define ____SMTP_RSET_h__
|
|
|
|
#include "Command.h"
|
|
#include "TCPSession.h"
|
|
#include "ZString.h"
|
|
|
|
namespace mail {
|
|
|
|
class __SMTP_RSET : public core::Command {
|
|
int processCommand(coreutils::ZString &request, core::TCPSession &session) override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|