VideoCallServer.TCPServer.Init C# (CSharp) Method

Init() private method

Init method that create a server (TCP Listener) Object based on the IP Address and Port information that is passed in.
private Init ( IPEndPoint ipNport ) : void
ipNport System.Net.IPEndPoint
return void
        private void Init(IPEndPoint ipNport)
        {
            try
            {
                m_server = new TcpListener(ipNport);

            }
            catch (Exception)
            {
                m_server = null;
            }
        }