Files
DearFTP/DearFTP/Connection/Commands/SystemCommand.cs
Eveldee 94431aebb8 Clean code
Remove unused usings
Remove blank lines
Fix style issues
2019-07-20 16:16:23 +02:00

16 lines
374 B
C#

namespace DearFTP.Connection.Commands
{
class SystemCommand : ICommand
{
public string[] Aliases { get; } = new string[]
{
"SYST"
};
public void Execute(Session session, FtpStream stream, string alias, string argument)
{
stream.Send(ResponseCode.NameSystemType, "UNIX Type: L8");
}
}
}