17 lines
397 B
C#
17 lines
397 B
C#
namespace DearFTP.Connection.Commands
|
|
{
|
|
class QuitCommand : ICommand
|
|
{
|
|
public string[] Aliases { get; } = new string[]
|
|
{
|
|
"QUIT",
|
|
"EXIT"
|
|
};
|
|
|
|
public void Execute(Session session, FtpStream stream, string alias, string argument)
|
|
{
|
|
stream.Send(ResponseCode.ServiceClosingConnection, "Goodbye.");
|
|
}
|
|
}
|
|
}
|