mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 00:54:40 +00:00
quick fix to show more than one adapter
code still needs work to get it as per MS ipconfig, but this should keep people with more than one adapter happy until I get time to implement everything properly. svn path=/trunk/; revision=19104
This commit is contained in:
parent
970e0f7ac4
commit
4b27b1a206
1 changed files with 19 additions and 19 deletions
|
@ -97,13 +97,13 @@ DWORD DoFormatMessage(DWORD ErrorCode)
|
|||
|
||||
INT ShowInfo(BOOL bAll)
|
||||
{
|
||||
PIP_ADAPTER_INFO pAdapterInfo;
|
||||
PIP_ADAPTER_INFO pAdapterInfo = NULL;
|
||||
PIP_ADAPTER_INFO pAdapter = NULL;
|
||||
ULONG adaptOutBufLen;
|
||||
|
||||
PFIXED_INFO pFixedInfo;
|
||||
ULONG netOutBufLen;
|
||||
PIP_ADDR_STRING pIPAddr;
|
||||
PIP_ADDR_STRING pIPAddr = NULL;
|
||||
|
||||
/* assign memory for call to GetNetworkParams */
|
||||
pFixedInfo = (FIXED_INFO *) GlobalAlloc( GPTR, sizeof( FIXED_INFO ) );
|
||||
|
@ -127,16 +127,19 @@ INT ShowInfo(BOOL bAll)
|
|||
pAdapterInfo = (IP_ADAPTER_INFO *) malloc (adaptOutBufLen);
|
||||
}
|
||||
|
||||
if (GetAdaptersInfo(pAdapterInfo, &adaptOutBufLen) == NO_ERROR)
|
||||
{
|
||||
if (GetNetworkParams(pFixedInfo, &netOutBufLen) == NO_ERROR)
|
||||
{
|
||||
if (! GetAdaptersInfo(pAdapterInfo, &adaptOutBufLen) == NO_ERROR)
|
||||
_tprintf(_T("GetAdaptersInfo failed %lu\n"), GetLastError());
|
||||
if (! GetNetworkParams(pFixedInfo, &netOutBufLen) == NO_ERROR)
|
||||
_tprintf(_T("GetNetworkParams failed %lu\n"), GetLastError());
|
||||
|
||||
pAdapter = pAdapterInfo;
|
||||
//HKEY hKey;
|
||||
//LPCTSTR lpSubKey = _T("SYSTEM\\ControlSet\\Control\\Network");
|
||||
|
||||
_tprintf(_T("\nReactOS IP Configuration\n\n"));
|
||||
|
||||
do
|
||||
{
|
||||
if (bAll)
|
||||
{
|
||||
_tprintf(_T("\tHost Name . . . . . . . . . . . . : %s\n"), pFixedInfo->HostName);
|
||||
|
@ -153,7 +156,7 @@ INT ShowInfo(BOOL bAll)
|
|||
_tprintf(_T("\tDNS Suffix Search List. . . . . . : %s\n"), pFixedInfo->DomainName);
|
||||
}
|
||||
|
||||
_tprintf(_T("\n%s Local Area Connection: \n\n"), GetInterfaceTypeName(pAdapter->Type));
|
||||
_tprintf(_T("\n%s ...... : \n\n"), GetInterfaceTypeName(pAdapter->Type));
|
||||
_tprintf(_T("\tConnection-specific DNS Suffix. . : %s\n"), pFixedInfo->DomainName);
|
||||
|
||||
if (bAll)
|
||||
|
@ -196,13 +199,10 @@ INT ShowInfo(BOOL bAll)
|
|||
}
|
||||
}
|
||||
_tprintf(_T("\n"));
|
||||
}
|
||||
else
|
||||
_tprintf(_T("Call to GetNetworkParams failed.\n"));
|
||||
|
||||
}
|
||||
else
|
||||
_tprintf(_T("Call to GetAdaptersInfo failed.\n"));
|
||||
pAdapter = pAdapter->Next;
|
||||
|
||||
} while (pAdapter);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue