BARANTMail/__SMTP_VRFY.h
Brad Arant 6c844983d9 sync
2022-06-29 13:34:49 -07:00

17 lines
296 B
C++

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