Which PID listens on a given port in c# - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T13:45:08Z http://stackoverflow.com/feeds/question/577433 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/577433/which-pid-listens-on-a-given-port-in-c 1 Which PID listens on a given port in c# Philip Derbeko 2009-02-23T12:05:29Z 2009-02-23T13:37:48Z <p>What is the easiest way to get a PID that listens on a given port in C#? Basically, I want to make sure that my service is running and listens on a port I have provided it. If there is an easier way than parsing netstat output it will be great.</p> http://stackoverflow.com/questions/577433/which-pid-listens-on-a-given-port-in-c/577500#577500 3 Answer by AlexDuggleby for Which PID listens on a given port in c# AlexDuggleby 2009-02-23T12:35:28Z 2009-02-23T12:35:28Z <p>Hi,</p> <p>check out this project: <a href="http://www.codeproject.com/KB/IP/iphlpapi.aspx" rel="nofollow">http://www.codeproject.com/KB/IP/iphlpapi.aspx</a></p> <p>It uses Interop in C# to get to the underlying GetTcpTable Win API function. And therefore can give you the process id you are looking for.</p> <p>hope that helps, Alex</p> http://stackoverflow.com/questions/577433/which-pid-listens-on-a-given-port-in-c/577660#577660 1 Answer by ShuggyCoUk for Which PID listens on a given port in c# ShuggyCoUk 2009-02-23T13:37:48Z 2009-02-23T13:37:48Z <p>from win XP SP2 onwards you can P/Invoke to <a href="http://www.pinvoke.net/default.aspx/iphlpapi/GetExtendedTcpTable.html" rel="nofollow">GetExtendedTcpTable</a></p> <p>Using <a href="http://convert.codes-sources.com/file2cs.aspx?ID=48860&amp;f=YAPM%2FClasses%2FcNetwork.vb" rel="nofollow">This person's</a> kind work to flesh out the signature (the PInvoke.net spec is incomplete) here is a (rough and poor at error checking) example</p> <pre><code>using System; using System.Runtime.InteropServices; public enum TCP_TABLE_CLASS : int { TCP_TABLE_BASIC_LISTENER, TCP_TABLE_BASIC_CONNECTIONS, TCP_TABLE_BASIC_ALL, TCP_TABLE_OWNER_PID_LISTENER, TCP_TABLE_OWNER_PID_CONNECTIONS, TCP_TABLE_OWNER_PID_ALL, TCP_TABLE_OWNER_MODULE_LISTENER, TCP_TABLE_OWNER_MODULE_CONNECTIONS, TCP_TABLE_OWNER_MODULE_ALL } [StructLayout(LayoutKind.Sequential)] public struct MIB_TCPROW_OWNER_PID { public uint state; public uint localAddr; public byte localPort1; public byte localPort2; public byte localPort3; public byte localPort4; public uint remoteAddr; public byte remotePort1; public byte remotePort2; public byte remotePort3; public byte remotePort4; public int owningPid; public ushort LocalPort { get { return BitConverter.ToUInt16( new byte[2] { localPort2, localPort1}, 0); } } public ushort RemotePort { get { return BitConverter.ToUInt16( new byte[2] { remotePort2, remotePort1}, 0); } } } [StructLayout(LayoutKind.Sequential)] public struct MIB_TCPTABLE_OWNER_PID { public uint dwNumEntries; MIB_TCPROW_OWNER_PID table; } [DllImport("iphlpapi.dll", SetLastError=true)] static extern uint GetExtendedTcpTable(IntPtr pTcpTable, ref int dwOutBufLen, bool sort, int ipVersion, TCP_TABLE_CLASS tblClass, int reserved); public static MIB_TCPROW_OWNER_PID[] GetAllTcpConnections() { MIB_TCPROW_OWNER_PID[] tTable; int AF_INET = 2; // IP_v4 int buffSize = 0; // how much memory do we need? uint ret = GetExtendedTcpTable(IntPtr.Zero, ref buffSize, true, AF_INET, TCP_TABLE_CLASS.TCP_TABLE_OWNER_PID_ALL, 0); if (ret != 0 &amp;&amp; ret != 122) // 122 insufficient buffer size throw new Exception("bad ret on check " + ret); IntPtr buffTable = Marshal.AllocHGlobal(buffSize); try { ret = GetExtendedTcpTable(buffTable, ref buffSize, true, AF_INET, TCP_TABLE_CLASS.TCP_TABLE_OWNER_PID_ALL, 0); if (ret != 0) throw new Exception("bad ret "+ ret); // get the number of entries in the table MIB_TCPTABLE_OWNER_PID tab = (MIB_TCPTABLE_OWNER_PID)Marshal.PtrToStructure( buffTable, typeof(MIB_TCPTABLE_OWNER_PID)); IntPtr rowPtr = (IntPtr)((long)buffTable + Marshal.SizeOf(tab.dwNumEntries)); tTable = new MIB_TCPROW_OWNER_PID[tab.dwNumEntries]; for (int i = 0; i &lt; tab.dwNumEntries; i++) { MIB_TCPROW_OWNER_PID tcpRow = (MIB_TCPROW_OWNER_PID)Marshal .PtrToStructure(rowPtr, typeof(MIB_TCPROW_OWNER_PID)); tTable[i] = tcpRow; // next entry rowPtr = (IntPtr)((long)rowPtr + Marshal.SizeOf(tcpRow)); } } finally { // Free the Memory Marshal.FreeHGlobal(buffTable); } return tTable; } </code></pre>