完善对SGIP协议的支持,未测试
Stone authored at 2012-01-02 16:36:45
468.00 B
X
using System;
using System.Collections.Generic;
using System.Text;
using NewLife.Net.Sockets;
using System.Net.Sockets;

namespace NewLife.Net.SGIP
{
    /// <summary>SGIP服务器</summary>
    public class SGIPServer : NetServer
    {
        #region 构造
        /// <summary>实例化</summary>
        public SGIPServer()
        {
            ProtocolType = ProtocolType.Tcp;
            Port = 8801;
        }
        #endregion
    }
}