vote up 0 vote down star
1

ie like the TCP/IP tab in process explorer : alt text

I know how to get all open connections for the machine - but there doesn't seem to be an obvious way to tie them to a process. Is there an API to do this in .net - or some creative use of PInvoke perhaps ?

thanks,

flag

1 Answer

vote up 1 vote down

You will need to use P/Invoke:

GetTcpTable can be used to get all the TCP connections.

[DllImport("iphlpapi.dll")] 
public static extern int GetTcpTable( ... );

This article has example code.

link|flag
thanks. googling a bit for GetTcpTable brought me to this codeproject article codeproject.com/KB/IP/… which wraps the PInvokes in a slightly nicer .net API – Ian Jul 23 at 2:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.