BARANTMail/SMTPCommand.cpp
2022-07-26 16:05:55 -07:00

22 lines
615 B
C++

#include "SMTPCommand.h"
namespace mail {
int SMTPCommand::processCommand(coreutils::ZString &request, core::TCPSession &session) {
return processCommand(request, (SMTPSession &)session, (SMTPServer &)session.server);
}
int SMTPCommand::processCommand(coreutils::ZString &request, SMTPSession &session, SMTPServer &server) {
return 0;
}
void SMTPCommand::grabInput(SMTPSession &session) {
session.server.commands.grabInput(session, *this);
}
void SMTPCommand::clearGrab(SMTPSession &session) {
session.server.commands.clearGrab(session);
}
}