BARANTMail/__SMTP_EHLO.h
2022-07-08 19:30:00 -07:00

20 lines
319 B
C++

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