struttura FIXED_INFO_W2KSP1 (iptypes.h)
La struttura FIXED_INFO contiene informazioni uguali in tutte le interfacce di un computer.
Sintassi
typedef struct {
char HostName[MAX_HOSTNAME_LEN + 4];
char DomainName[MAX_DOMAIN_NAME_LEN + 4];
PIP_ADDR_STRING CurrentDnsServer;
IP_ADDR_STRING DnsServerList;
UINT NodeType;
char ScopeId[MAX_SCOPE_ID_LEN + 4];
UINT EnableRouting;
UINT EnableProxy;
UINT EnableDns;
} FIXED_INFO_W2KSP1, *PFIXED_INFO_W2KSP1;
Members
HostName[MAX_HOSTNAME_LEN + 4]
Tipo: char[MAX_HOSTNAME_LEN + 4]
Nome host per il computer locale. Può trattarsi del nome host completo (incluso il dominio) per un computer aggiunto a un dominio.
DomainName[MAX_DOMAIN_NAME_LEN + 4]
Tipo: char[MAX_DOMAIN_NAME_LEN + 4]
Dominio in cui è registrato il computer locale.
CurrentDnsServer
Tipo: PIP_ADDR_STRING
Riservato. Usare il membro DnsServerList per ottenere i server DNS per il computer locale.
DnsServerList
Tipo: IP_ADDR_STRING
Elenco collegato di strutture IP_ADDR_STRING che specificano il set di server DNS utilizzati dal computer locale.
NodeType
Tipo: UINT
Tipo di nodo del computer locale. Questi valori sono definiti nel file di intestazione Iptypes.h .
ScopeId[MAX_SCOPE_ID_LEN + 4]
Tipo: char[MAX_SCOPE_ID_LEN + 4]
Nome dell'ambito DHCP.
EnableRouting
Tipo: UINT
Valore booleano che specifica se il routing è abilitato nel computer locale.
EnableProxy
Tipo: UINT
Valore booleano che specifica se il computer locale funge da proxy ARP.
EnableDns
Tipo: UINT
Valore booleano che specifica se IL DNS è abilitato nel computer locale.
Commenti
La struttura FIXED_INFO viene recuperata dalla funzione GetNetworkParams .
In Microsoft Windows Software Development Kit (SDK) viene definita la struttura FIXED_INFO_WIN2KSP1 . Quando si compila un'applicazione se la piattaforma di destinazione è Windows 2000 con Service Pack 1 (SP1) e versioni successive (NTDDI_VERSION >= NTDDI_WIN2KSP1
, _WIN32_WINNT >= 0x0501
o WINVER >= 0x0501
), lo struct FIXED_INFO_WIN2KSP1 viene tipizzato nella struttura FIXED_INFO . Quando si compila un'applicazione se la piattaforma di destinazione non è Windows 2000 con SP1 e versioni successive, la struttura FIXED_INFO non è definita.
La funzione GetNetworkParams e la struttura FIXED_INFO sono supportate in Windows 98 e versioni successive. Tuttavia, per compilare un'applicazione per una piattaforma di destinazione precedente a Windows 2000 con Service Pack 1 (SP1), è necessario usare una versione precedente di Platform Software Development Kit (SDK).
Esempio
Il codice seguente recupera una struttura FIXED_INFO che contiene informazioni di configurazione di rete per il computer locale. Il codice stampa i membri selezionati dalla struttura.
//
// Link with IPHlpAPI.lib
//
#include <winsock2.h>
#include <iphlpapi.h>
#include <stdio.h>
#include <windows.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()
{
FIXED_INFO *pFixedInfo;
ULONG ulOutBufLen;
DWORD dwRetVal;
IP_ADDR_STRING *pIPAddr;
pFixedInfo = (FIXED_INFO *) MALLOC(sizeof (FIXED_INFO));
if (pFixedInfo == NULL) {
printf("Error allocating memory needed to call GetNetworkParams\n");
return 1;
}
ulOutBufLen = sizeof (FIXED_INFO);
// Make an initial call to GetAdaptersInfo to get
// the necessary size into the ulOutBufLen variable
if (GetNetworkParams(pFixedInfo, &ulOutBufLen) == ERROR_BUFFER_OVERFLOW) {
FREE(pFixedInfo);
pFixedInfo = (FIXED_INFO *) MALLOC(ulOutBufLen);
if (pFixedInfo == NULL) {
printf("Error allocating memory needed to call GetNetworkParams\n");
return 1;
}
}
if (dwRetVal = GetNetworkParams(pFixedInfo, &ulOutBufLen) == NO_ERROR) {
printf("Host Name: %s\n", pFixedInfo->HostName);
printf("Domain Name: %s\n", pFixedInfo->DomainName);
printf("DNS Servers:\n");
printf("\t%s\n", pFixedInfo->DnsServerList.IpAddress.String);
pIPAddr = pFixedInfo->DnsServerList.Next;
while (pIPAddr) {
printf("\t%s\n", pIPAddr->IpAddress.String);
pIPAddr = pIPAddr->Next;
}
printf("Node Type: ");
switch (pFixedInfo->NodeType) {
case BROADCAST_NODETYPE:
printf("Broadcast node\n");
break;
case PEER_TO_PEER_NODETYPE:
printf("Peer to Peer node\n");
break;
case MIXED_NODETYPE:
printf("Mixed node\n");
break;
case HYBRID_NODETYPE:
printf("Hybrid node\n");
break;
default:
printf("Unknown node type %0lx\n", pFixedInfo->NodeType);
break;
}
printf("DHCP scope name: %s\n", pFixedInfo->ScopeId);
if (pFixedInfo->EnableRouting)
printf("Routing: enabled\n");
else
printf("Routing: disabled\n");
if (pFixedInfo->EnableProxy)
printf("ARP proxy: enabled\n");
else
printf("ARP Proxy: disabled\n");
if (pFixedInfo->EnableDns)
printf("DNS: enabled\n");
else
printf("DNS: disabled\n");
} else {
printf("GetNetworkParams failed with error: %d\n", dwRetVal);
return 1;
}
if (pFixedInfo)
FREE(pFixedInfo);
return 0;
}
Requisiti
Client minimo supportato | Windows 2000 Professional [solo app desktop] |
Server minimo supportato | Windows 2000 Server [solo app desktop] |
Intestazione | iptypes.h (include Iphlpapi.h) |