⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stunresult.cs

📁 破解的飞信源代码
💻 CS
字号:
namespace Imps.Client.Core.P2P.ICE
{
    using System;
    using System.Net;

    public class StunResult
    {
        private IPEndPoint m_localEndPoint;
        private StunNetType m_NetType = StunNetType.OpenInternet;
        private IPEndPoint m_pPublicEndPoint;

        public StunResult(StunNetType netType, IPEndPoint publicEndPoint, IPEndPoint localEndPoint)
        {
            this.m_NetType = netType;
            this.m_pPublicEndPoint = publicEndPoint;
            this.m_localEndPoint = localEndPoint;
        }

        public IPEndPoint LocalEndPoint
        {
            get
            {
                return this.m_localEndPoint;
            }
            set
            {
                this.m_localEndPoint = value;
            }
        }

        public StunNetType NetType
        {
            get
            {
                return this.m_NetType;
            }
        }

        public IPEndPoint PublicEndPoint
        {
            get
            {
                return this.m_pPublicEndPoint;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -