0

我想通过名称获取适配器索引,经过几天的搜索,我找到了GetAdapterIndex()函数:

#include <winsock2.h>
#include <iphlpapi.h>
#include <stdio.h>
#include <iostream>
#include <stdlib.h>
#pragma comment(lib, "IPHLPAPI.lib")

#define MALLOC(x) HeapAlloc(GetProcessHeap(), 0, (x)) 
#define FREE(x) HeapFree(GetProcessHeap(), 0, (x))

int main()
{
    DWORD res;
    DWORD rs;
    ULONG IfIndex;
    LPWSTR AdapterName;
    int i = 0;
    res = GetAdapterIndex(L"AMD PCNET Family PCI Ethernet Adapter - Packet Scheduler Miniport", &IfIndex);
    if(res == NO_ERROR)
        printf("Adapter Index: %ld\n", IfIndex);

    res = GetNumberOfInterfaces(&rs);
    if(res == NO_ERROR)
        printf("Number of Adapters: %ld\n", rs);
return 0;
}

首先:它不会返回我选择的特定适配器名称的索引。 第二:它返回我有两个适配器,即使我只有一个。

4

1 回答 1

1

您可以使用 打印网络接口的名称和描述GetIfEntry,索引范围从 1 到 返回的值GetNumberOfInterfaces。所有名称的格式\DEVICE\TCPIP_{846EE342-7039-11DE-9D20-806E6F6E6963}都解释了为什么您没有使用好名称找到您的界面。

于 2012-07-05T21:16:43.343 回答