IP_ADAPTER_INFO struttura (iptypes.h)
La struttura IP_ADAPTER_INFO contiene informazioni su una scheda di rete specifica nel computer locale.
Sintassi
typedef struct _IP_ADAPTER_INFO {
struct _IP_ADAPTER_INFO *Next;
DWORD ComboIndex;
char AdapterName[MAX_ADAPTER_NAME_LENGTH + 4];
char Description[MAX_ADAPTER_DESCRIPTION_LENGTH + 4];
UINT AddressLength;
BYTE Address[MAX_ADAPTER_ADDRESS_LENGTH];
DWORD Index;
UINT Type;
UINT DhcpEnabled;
PIP_ADDR_STRING CurrentIpAddress;
IP_ADDR_STRING IpAddressList;
IP_ADDR_STRING GatewayList;
IP_ADDR_STRING DhcpServer;
BOOL HaveWins;
IP_ADDR_STRING PrimaryWinsServer;
IP_ADDR_STRING SecondaryWinsServer;
time_t LeaseObtained;
time_t LeaseExpires;
} IP_ADAPTER_INFO, *PIP_ADAPTER_INFO;
Members
Next
Tipo: struct _IP_ADAPTER_INFO*
Puntatore alla scheda successiva nell'elenco di schede.
ComboIndex
Tipo: DWORD
Riservato.
AdapterName[MAX_ADAPTER_NAME_LENGTH + 4]
Tipo: char[MAX_ADAPTER_NAME_LENGTH + 4]
Stringa di caratteri ANSI del nome dell'adapter.
Description[MAX_ADAPTER_DESCRIPTION_LENGTH + 4]
Tipo: char[MAX_ADAPTER_DESCRIPTION_LENGTH + 4]
Stringa di caratteri ANSI che contiene la descrizione dell'adapter.
AddressLength
Tipo: UINT
Lunghezza, in byte, dell'indirizzo hardware per l'adattatore.
Address[MAX_ADAPTER_ADDRESS_LENGTH]
Tipo: BYTE[MAX_ADAPTER_ADDRESS_LENGTH]
Indirizzo hardware per l'adattatore rappresentato come matrice BYTE .
Index
Tipo: DWORD
Indice dell'adattatore.
L'indice dell'adattatore può cambiare quando un adattatore è disabilitato e quindi abilitato o in altre circostanze e non deve essere considerato persistente.
Type
Tipo: UINT
Tipo di adattatore. I valori possibili per il tipo di adattatore sono elencati nel file di intestazione Ipifcons.h .
La tabella seguente elenca i valori comuni per il tipo di adattatore anche se altri valori sono possibili in Windows Vista e versioni successive.
DhcpEnabled
Tipo: UINT
Valore dell'opzione che specifica se il protocollo DHCP (Dynamic Host Configuration Protocol) è abilitato per questa scheda.
CurrentIpAddress
Tipo: PIP_ADDR_STRING
Riservato.
IpAddressList
Tipo: IP_ADDR_STRING
Elenco di indirizzi IPv4 associati a questa scheda rappresentata come elenco collegato di strutture IP_ADDR_STRING . Un adattatore può avere più indirizzi IPv4 assegnati a esso.
GatewayList
Tipo: IP_ADDR_STRING
Indirizzo IPv4 del gateway per questa scheda rappresentato come elenco collegato di strutture IP_ADDR_STRING . Una scheda può avere più indirizzi del gateway IPv4 assegnati. Questo elenco contiene in genere una singola voce per l'indirizzo IPv4 del gateway predefinito per questa scheda.
DhcpServer
Tipo: IP_ADDR_STRING
Indirizzo IPv4 del server DHCP per questa scheda rappresentato come elenco collegato di strutture IP_ADDR_STRING . Questo elenco contiene una singola voce per l'indirizzo IPv4 del server DHCP per questa scheda. Un valore pari a 255.255.255.255 indica che il server DHCP non è stato raggiunto oppure è in fase di raggiungimento.
Questo membro è valido solo quando il membro DhcpEnabled è diverso da zero.
HaveWins
Tipo: BOOL
Valore di opzione che specifica se questa scheda usa il servizio Nome Internet windows (WINS).
PrimaryWinsServer
Tipo: IP_ADDR_STRING
L'indirizzo IPv4 del server WINS primario rappresentato come elenco collegato di strutture IP_ADDR_STRING . Questo elenco contiene una singola voce per l'indirizzo IPv4 del server WINS primario per questa scheda.
Questo membro è valido solo quando il membro HaveWins è TRUE.
SecondaryWinsServer
Tipo: IP_ADDR_STRING
L'indirizzo IPv4 del server WINS secondario rappresentato come elenco collegato di strutture IP_ADDR_STRING . Un adattatore può avere più indirizzi del server WINS secondari assegnati.
Questo membro è valido solo quando il membro HaveWins è TRUE.
LeaseObtained
Tipo: time_t
Ora in cui è stato ottenuto il lease DHCP corrente.
Questo membro è valido solo quando il membro DhcpEnabled è diverso da zero.
LeaseExpires
Tipo: time_t
Ora in cui scade il lease DHCP corrente.
Questo membro è valido solo quando il membro DhcpEnabled è diverso da zero.
Commenti
La struttura IP_ADAPTER_INFO è limitata alle informazioni IPv4 relative a una scheda di rete specifica nel computer locale. La struttura IP_ADAPTER_INFO viene recuperata chiamando la funzione GetAdaptersInfo .
Quando si usa Visual Studio 2005 e versioni successive, il tipo di dati time_t viene predefinito in un tipo di dati a 8 byte, non il tipo di dati a 4 byte usato per i membri LeaseObtained e LeaseExpires in una piattaforma a 32 bit. Per usare correttamente la struttura IP_ADAPTER_INFO in una piattaforma a 32 bit, definire _USE_32BIT_TIME_T (usare -D _USE_32BIT_TIME_T
come opzione, ad esempio) quando si compila l'applicazione per forzare il tipo di dati time_t in un tipo di dati a 4 byte.
Per l'uso in Windows XP e versioni successive, la struttura IP_ADAPTER_ADDRESSES contiene sia le informazioni IPv4 che IPv6. La funzione GetAdaptersAddresses recupera le informazioni sull'adapter IPv4 e IPv6.
Esempio
In questo esempio vengono recuperate le informazioni sull'adattatore e vengono stampate varie proprietà di ogni scheda.
#include <winsock2.h>
#include <iphlpapi.h>
#include <stdio.h>
#include <stdlib.h>
#pragma comment(lib, "IPHLPAPI.lib")
#define MALLOC(x) HeapAlloc(GetProcessHeap(), 0, (x))
#define FREE(x) HeapFree(GetProcessHeap(), 0, (x))
/* Note: could also use malloc() and free() */
int __cdecl main()
{
/* Declare and initialize variables */
// It is possible for an adapter to have multiple
// IPv4 addresses, gateways, and secondary WINS servers
// assigned to the adapter.
//
// Note that this sample code only prints out the
// first entry for the IP address/mask, and gateway, and
// the primary and secondary WINS server for each adapter.
PIP_ADAPTER_INFO pAdapterInfo;
PIP_ADAPTER_INFO pAdapter = NULL;
DWORD dwRetVal = 0;
UINT i;
/* variables used to print DHCP time info */
struct tm newtime;
char buffer[32];
errno_t error;
ULONG ulOutBufLen = sizeof (IP_ADAPTER_INFO);
pAdapterInfo = (IP_ADAPTER_INFO *) MALLOC(sizeof (IP_ADAPTER_INFO));
if (pAdapterInfo == NULL) {
printf("Error allocating memory needed to call GetAdaptersinfo\n");
return 1;
}
// Make an initial call to GetAdaptersInfo to get
// the necessary size into the ulOutBufLen variable
if (GetAdaptersInfo(pAdapterInfo, &ulOutBufLen) == ERROR_BUFFER_OVERFLOW) {
FREE(pAdapterInfo);
pAdapterInfo = (IP_ADAPTER_INFO *) MALLOC(ulOutBufLen);
if (pAdapterInfo == NULL) {
printf("Error allocating memory needed to call GetAdaptersinfo\n");
return 1;
}
}
if ((dwRetVal = GetAdaptersInfo(pAdapterInfo, &ulOutBufLen)) == NO_ERROR) {
pAdapter = pAdapterInfo;
while (pAdapter) {
printf("\tComboIndex: \t%d\n", pAdapter->ComboIndex);
printf("\tAdapter Name: \t%s\n", pAdapter->AdapterName);
printf("\tAdapter Desc: \t%s\n", pAdapter->Description);
printf("\tAdapter Addr: \t");
for (i = 0; i < pAdapter->AddressLength; i++) {
if (i == (pAdapter->AddressLength - 1))
printf("%.2X\n", (int) pAdapter->Address[i]);
else
printf("%.2X-", (int) pAdapter->Address[i]);
}
printf("\tIndex: \t%d\n", pAdapter->Index);
printf("\tType: \t");
switch (pAdapter->Type) {
case MIB_IF_TYPE_OTHER:
printf("Other\n");
break;
case MIB_IF_TYPE_ETHERNET:
printf("Ethernet\n");
break;
case MIB_IF_TYPE_TOKENRING:
printf("Token Ring\n");
break;
case MIB_IF_TYPE_FDDI:
printf("FDDI\n");
break;
case MIB_IF_TYPE_PPP:
printf("PPP\n");
break;
case MIB_IF_TYPE_LOOPBACK:
printf("Lookback\n");
break;
case MIB_IF_TYPE_SLIP:
printf("Slip\n");
break;
default:
printf("Unknown type %ld\n", pAdapter->Type);
break;
}
printf("\tIP Address: \t%s\n",
pAdapter->IpAddressList.IpAddress.String);
printf("\tIP Mask: \t%s\n", pAdapter->IpAddressList.IpMask.String);
printf("\tGateway: \t%s\n", pAdapter->GatewayList.IpAddress.String);
printf("\t***\n");
if (pAdapter->DhcpEnabled) {
printf("\tDHCP Enabled: Yes\n");
printf("\t DHCP Server: \t%s\n",
pAdapter->DhcpServer.IpAddress.String);
printf("\t Lease Obtained: ");
/* Display local time */
error = _localtime32_s(&newtime, (__time32_t*) &pAdapter->LeaseObtained);
if (error)
printf("Invalid Argument to _localtime32_s\n");
else {
// Convert to an ASCII representation
error = asctime_s(buffer, 32, &newtime);
if (error)
printf("Invalid Argument to asctime_s\n");
else
/* asctime_s returns the string terminated by \n\0 */
printf("%s", buffer);
}
printf("\t Lease Expires: ");
error = _localtime32_s(&newtime, (__time32_t*) &pAdapter->LeaseExpires);
if (error)
printf("Invalid Argument to _localtime32_s\n");
else {
// Convert to an ASCII representation
error = asctime_s(buffer, 32, &newtime);
if (error)
printf("Invalid Argument to asctime_s\n");
else
/* asctime_s returns the string terminated by \n\0 */
printf("%s", buffer);
}
} else
printf("\tDHCP Enabled: No\n");
if (pAdapter->HaveWins) {
printf("\tHave Wins: Yes\n");
printf("\t Primary Wins Server: %s\n",
pAdapter->PrimaryWinsServer.IpAddress.String);
printf("\t Secondary Wins Server: %s\n",
pAdapter->SecondaryWinsServer.IpAddress.String);
} else
printf("\tHave Wins: No\n");
pAdapter = pAdapter->Next;
printf("\n");
}
} else {
printf("GetAdaptersInfo failed with error: %d\n", dwRetVal);
}
if (pAdapterInfo)
FREE(pAdapterInfo);
return 0;
}
Requisiti
Client minimo supportato | Windows 2000 Professional [solo app desktop] |
Server minimo supportato | Windows 2000 Server [solo app desktop] |
Intestazione | iptypes.h (includere Iphlpapi.h) |