views:

93

answers:

1

I'm looking for the underlying API calls that netstat -b is using to determine the owning processes for each socket. Any ideas?

+2  A: 

You need to look at the IPHelper APIs, in this case specifically GetExtendedTcpTable and GetOwnerModuleFromTcpEntry

Stewart
Thanks, that's what I need!
Stabledog