SystemTcpConnection.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / NetworkInformation / SystemTcpConnection.cs / 1305376 / SystemTcpConnection.cs

                             

namespace System.Net.NetworkInformation {

    using System.Net; 
    using System.Net.Sockets;
    using System.Security.Permissions; 
    using System; 
    using System.Runtime.InteropServices;
    using System.Collections; 
    using System.ComponentModel;
    using System.Threading;

 

 
    ///  
    /// Represents an active Tcp connection.
    internal class SystemTcpConnectionInformation:TcpConnectionInformation { 
        IPEndPoint localEndPoint;
        IPEndPoint remoteEndPoint;
        TcpState state;
 
        internal SystemTcpConnectionInformation(MibTcpRow row) {
            state = row.state; 
 
            //port is returned in Big-Endian - most significant bit on left
            //unfortunately, its done at the word level and not the dword level. 

            int localPort = row.localPort1<<8|row.localPort2;
            int remotePort = ((state == TcpState.Listen)?0:row.remotePort1<<8|row.remotePort2);
 
            localEndPoint = new IPEndPoint(row.localAddr,(int)localPort);
            remoteEndPoint= new IPEndPoint(row.remoteAddr,(int)remotePort); 
        } 

        // IPV6 version of the Tcp row 
        internal SystemTcpConnectionInformation(MibTcp6RowOwnerPid row) {
            state = row.state;

            //port is returned in Big-Endian - most significant bit on left 
            //unfortunately, its done at the word level and not the dword level.
 
            int localPort = row.localPort1 << 8 | row.localPort2; 
            int remotePort = ((state == TcpState.Listen) ? 0 : row.remotePort1 << 8 | row.remotePort2);
 
            localEndPoint = new IPEndPoint(new IPAddress(row.localAddr, row.localScopeId), (int)localPort);
            remoteEndPoint = new IPEndPoint(new IPAddress(row.remoteAddr, row.remoteScopeId), (int)remotePort);
        }
 

        public override TcpState State{get {return state;}} 
        public override IPEndPoint LocalEndPoint{get {return localEndPoint;}} 
        public override IPEndPoint RemoteEndPoint{get {return remoteEndPoint;}}
    } 
 }


// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK