#ifndef ____SMTP_HELO_h__ # define ____SMTP_HELO_h__ # include "Command.h" # include "SMTPSession.h" namespace mail { class SMTPServer; class __SMTP_HELO : public core::Command { public: int processCommand(coreutils::ZString &request, core::TCPSession &session) override; }; } #endif