2018-04-08 02:44:42 -04:00
|
|
|
|
using System;
|
2018-04-02 01:25:06 -04:00
|
|
|
|
|
2018-04-08 02:44:42 -04:00
|
|
|
|
namespace SharedLibraryCore.RCon
|
2018-04-02 01:25:06 -04:00
|
|
|
|
{
|
|
|
|
|
public static class StaticHelpers
|
|
|
|
|
{
|
|
|
|
|
public enum QueryType
|
|
|
|
|
{
|
|
|
|
|
GET_STATUS,
|
|
|
|
|
GET_INFO,
|
|
|
|
|
DVAR,
|
|
|
|
|
COMMAND,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static char SeperatorChar = (char)int.Parse("0a", System.Globalization.NumberStyles.AllowHexSpecifier);
|
2018-04-05 00:38:45 -04:00
|
|
|
|
public static readonly TimeSpan SocketTimeout = new TimeSpan(0, 0, 10);
|
2018-04-02 01:25:06 -04:00
|
|
|
|
}
|
|
|
|
|
}
|