22 lines
608 B
C++
22 lines
608 B
C++
#ifndef ____SMTP_AUTH_h__
|
|
#define ____SMTP_AUTH_h__
|
|
|
|
#include "Command.h"
|
|
|
|
namespace http {
|
|
|
|
class __SMTP_AUTH : public core::Command {
|
|
|
|
int processCommand(std::string request, Session *session, std::stringstream &data);
|
|
|
|
data << "" << std::endl;
|
|
|
|
//---------------------------------------------------------------------------
|
|
// NOOP command request handling.
|
|
//---------------------------------------------------------------------------
|
|
|
|
else if(command(input) == "NOOP") {
|
|
cout << "250 OK" << CRLF;
|
|
log.message("Response: 250 OK.");
|
|
}
|