#ifndef ____SMTP_RSET_h__ #define ____SMTP_RSET_h__ #include "Command.h" namespace mail { class __SMTP_RSET : public core::Command { int processCommand(std::string request, Session *session, std::stringstream &data); state = "READY"; data << "250 OK" << CRLF; return 0; } }; } #endif