Is there a more elegant way of checking if a TCP port is available with Delphi other than catching a netstat call?
|
|
I guess you can use Indy's components to do that. For instance a So basically you could create such component, bind it to I guess other indy components can tell if a port is open or not, but I can't look at it right now. This was just to give you an approach. |
|||
|
|
|
@Mattl, if Available means open for you, you can use this code.
|
|||
|
|
|
The following code from Synapse works very well:
|
|||
|
|
|
netstat information can be retrieved by calling the GetTcpTable and GetUdpTable functions in the IP Helper API, or IPHLPAPI.DLL. For more information on calling the IPHLPAPI.DLL from Delphi, check out this Network traffic monitor. There are some wrappers for it too, and it is part of JEDI API Library. I wrote a Delphi version of NetStat long ago, but have since lost the source code. Those resources should get you started though. |
|||
|
|