i want to list all the NIC card address using a vc++[v6] code.I want to send broadcast messages to all NIC in a system. How can i do that.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You need GetAdaptersAddresses from the IP Helper API. This functionality is included via
You can filter to return IPV4, IPV6 or both. |
|||
|
|
|
You can do this through Win32_NetworkAdapter WMI class. If you want to know how to use WMI in Visual C++, follow this link at CodeProject. |
|||
|
|
|
this might be helpful: http://www.codeguru.com/cpp/i-n/network/networkinformation/article.php/c5451 |
||||
|
|
