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

14 lines
374 B
C++

#include "POP3Command.h"
namespace mail {
int POP3Command::processCommand(coreutils::ZString &request, core::TCPSession &session) {
return processCommand(request, (POP3Session &)session, (POP3Server &)session.server);
}
int POP3Command::processCommand(coreutils::ZString request, POP3Session &session, POP3Server &server) {
return 0;
}
}