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

19 lines
323 B
C++

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