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