17 lines
296 B
C++
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
|