1
0
Fork 0
This repository has been archived on 2019-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Galactic_Colors_Control/Galactic Colors Control Server/Commands/Client/CountCommand.cs

25 lines
1.1 KiB
C#
Raw Normal View History

using Galactic_Colors_Control_Common;
using Galactic_Colors_Control_Common.Protocol;
2016-10-09 12:27:08 +00:00
using System.Net.Sockets;
namespace Galactic_Colors_Control_Server.Commands
{
2016-11-03 20:01:16 +00:00
public class ClientCountCommand : ICommand
2016-10-09 12:27:08 +00:00
{
public string Name { get { return "count"; } }
public string DescText { get { return "Counts connected clients."; } }
public string HelpText { get { return "Use 'client count' to show connected clients count and size"; } }
2016-11-03 20:01:16 +00:00
public Manager.CommandGroup Group { get { return Manager.CommandGroup.client; } }
2016-10-09 12:27:08 +00:00
public bool IsServer { get { return true; } }
2016-11-03 20:01:16 +00:00
public bool IsClient { get { return true; } }
2016-10-11 10:09:51 +00:00
public bool IsClientSide { get { return false; } }
2016-10-09 12:27:08 +00:00
public bool IsNoConnect { get { return false; } }
public int minArgs { get { return 0; } }
public int maxArgs { get { return 0; } }
public RequestResult Execute(string[] args, Socket soc, bool server = false)
2016-10-09 12:27:08 +00:00
{
return new RequestResult(ResultTypes.OK, Common.Strings(Program.clients.Count.ToString(), Program.config.size.ToString()));
2016-10-09 12:27:08 +00:00
}
}
}