Tagged Questions
The iphelper tag has no wiki summary.
3
votes
1answer
139 views
How to detect a NEW TCP Connections By Windows APIs GetExtendedTCpTable
I have made an App for watching Active tcp/udp connections for the local pc. Now, my list of connections is static, How do i make it dynamic? I tried to use Timer events,but GetExtendedTCPTable ...
3
votes
7answers
9k views
How do you parse an IP address string in C#?
I'm writing C# code that uses the windows IP Helper API. One of the functions I'm trying to call is "GetBestInterface" that takes a 'uint' representation of an IP. What I need is to parse a textual ...
2
votes
8answers
2k views
How do you find out which NIC is connected to the internet?
Consider the following setup:
A windows PC with a LAN interface and a WiFi interface (the standard for any new laptop). Each of the interfaces might be connected or disconnected from a network. I need ...
1
vote
1answer
491 views
MTU mismatch between GetIfEntry and netsh
I'm working on pseudo-transport layer software that runs over UDP, providing reliable connection-oriented transmission, as an alternative to TCP. In order to maximize network efficiency, we query the ...
0
votes
2answers
157 views
Whats the difference between an adapter and a network interface?
Having a hard time understanding the MSDN documentation on the IP Helper Functions. Whats the difference between an adapter and a network interface?
0
votes
1answer
98 views
Network Adaptro configured with ip address or not? How to check using vc++/Windows api?
Hi Could any one share about Network Adaptor configured with ip address or not eithor using dhcp or manual. How to check using vc++/Windows api?
0
votes
1answer
401 views
Problem with using Win32 IPHelper API in python
I'm attempting to create python module for getting network parameters. I'm using ctypes and has some problems.
Function __getInterfaces_win2k() works with python 2.5 and 2.6, but doesn't work with ...