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
|
|
|
|
|
{
|
2018-09-07 23:29:42 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// defines the type of RCon query sent to a server
|
|
|
|
|
/// </summary>
|
2018-04-02 01:25:06 -04:00
|
|
|
|
public enum QueryType
|
|
|
|
|
{
|
2018-09-07 23:29:42 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// retrieve the status of a server
|
|
|
|
|
/// does not require RCon password
|
|
|
|
|
/// </summary>
|
2018-04-02 01:25:06 -04:00
|
|
|
|
GET_STATUS,
|
2018-09-07 23:29:42 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// retrieve the information of a server
|
|
|
|
|
/// server responds with key/value pairs
|
|
|
|
|
/// RCon password is required
|
|
|
|
|
/// </summary>
|
2018-04-02 01:25:06 -04:00
|
|
|
|
GET_INFO,
|
2018-09-07 23:29:42 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// retrieve the value of a DVAR
|
|
|
|
|
/// RCon password is required
|
|
|
|
|
/// </summary>
|
2018-04-02 01:25:06 -04:00
|
|
|
|
DVAR,
|
2018-09-07 23:29:42 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// execute a command
|
|
|
|
|
/// RCon password is required
|
|
|
|
|
/// </summary>
|
2018-04-02 01:25:06 -04:00
|
|
|
|
COMMAND,
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-07 23:29:42 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// line seperator char included in response from the server
|
|
|
|
|
/// </summary>
|
2018-04-02 01:25:06 -04:00
|
|
|
|
public static char SeperatorChar = (char)int.Parse("0a", System.Globalization.NumberStyles.AllowHexSpecifier);
|
2018-09-07 23:29:42 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// timeout in seconds to wait for a socket send or receive before giving up
|
|
|
|
|
/// </summary>
|
2018-09-04 13:40:29 -04:00
|
|
|
|
public static readonly TimeSpan SocketTimeout = new TimeSpan(0, 0, 10);
|
2018-09-07 23:29:42 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// interval in milliseconds to wait before sending the next RCon request
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static readonly int FloodProtectionInterval = 350;
|
2018-04-02 01:25:06 -04:00
|
|
|
|
}
|
|
|
|
|
}
|