using System; using System.Collections.Generic; using System.Reflection; using TGS.Interface.Components; namespace TGS.Interface { /// /// Contains constants for the interface /// public static class Definitions { /// /// The maximum message size to and from a local server /// public const long TransferLimitLocal = Int32.MaxValue; //2GB can't go higher /// /// The maximum message size to and from a remote server /// public const long TransferLimitRemote = 10485760; //10 MB /// /// Base name of communication URLs /// public const string MasterInterfaceName = "TGStationServerService"; /// /// Base name of instance URLs /// public const string InstanceInterfaceName = MasterInterfaceName + "/Instance"; } }