21 lines
465 B
C#
21 lines
465 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
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.");
|
|
}
|
|
}
|
|
}
|