using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CommonServer_ICE.Server { /// <summary> /// ICE服务器端配置 /// </summary> public class IceServerConfig { public string Ip { set; get; } public int Port { set; get; } public int Mode { set; get; } public bool ClearIdleSession { set; get; } public int ClearIdleSessionInterval { set; get; } public int IdleSessionTimeOut { set; get; } public int SendingQueueSize { set; get; } public string TextEncoding { set; get; } public int MaxConnectionNumber { set; get; } public int SendTimeOut { set; get; } } }