13 lines
279 B
C++
13 lines
279 B
C++
#ifndef ____SMTP_NOOP_h__
|
|
#define ____SMTP_NOOP_h__
|
|
|
|
#include "Command.h"
|
|
|
|
namespace mail {
|
|
|
|
class __SMTP_NOOP : public core::Command {
|
|
|
|
int processCommand(std::string request, Session *session, std::stringstream &data);
|
|
data << "250 OK" << CRLF;
|
|
}
|