14 lines
374 B
C++
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;
|
|
}
|
|
|
|
}
|