得到本机的MAC,IP, MASK地址


#include "InitSock.h"
#include <stdio.h>

#include <iphlpapi.h>
#pragma comment(lib, "IPHLPAPI.lib")

u_char g_ucLocalMac[6];
DWORD g_dwGatewayIP;
DWORD g_dwLocalIP;
DWORD g_dwMask;

BOOL GetGlobalData()
{
	PIP_ADAPTER_INFO pAdapterInfo = NULL;
	ULONG ulSize = 0;
	//为结构申请内存
	::GetAdaptersInfo(pAdapterInfo, &ulSize);
	pAdapterInfo = (PIP_ADAPTER_INFO)::GlobalAlloc(GPTR, ulSize);
	if ( ERROR_SUCCESS  == ::GetAdaptersInfo(pAdapterInfo, &ulSize))
	{
		if (pAdapterInfo != NULL)
		{
			memcpy(g_ucLocalMac, pAdapterInfo->Address, 6);
			g_dwGatewayIP = ::inet_addr(pAdapterInfo->GatewayList.IpAddress.String);
			g_dwLocalIP = ::inet_addr(pAdapterInfo->IpAddressList.IpAddress.String);
			g_dwMask = ::inet_addr(pAdapterInfo->IpAddressList.IpMask.String);
		}
	}
	//in_addr表示IP的结构
	in_addr in;
	in.S_un.S_addr = g_dwLocalIP;
	printf("  IP Address:%-30s\n", ::inet_ntoa(in));

	in.S_un.S_addr = g_dwGatewayIP;
	printf("  Gateway Address:%-30s\n", ::inet_ntoa(in));

	in.S_un.S_addr = g_dwMask;
	printf("  MASK Address:%-30s\n", ::inet_ntoa(in));

	u_char* p = g_ucLocalMac;
	printf("  MAC:%02X-%02X-%02X-%02X-%02X-%02X\n", p[0], p[1], p[2], p[3], p[4], p[5]);
	::GlobalFree(pAdapterInfo);
	pAdapterInfo = NULL;
	return TRUE;
}

void main()
{
	CInitSock initSock;
	
	GetGlobalData();

	printf("*******************************");
	getchar();
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值