获得本机IP信息-VC编程

 u_charg_ucLocalMac[6];// 本地MAC地址
DWORDg_dwGatewayIP;// 网关IP地址
DWORDg_dwLocalIP;// 本地IP地址
DWORDg_dwMask;// 子网掩码

BOOL GetGlobalData()
{
PIP_ADAPTER_INFO pAdapterInfo = NULL;
ULONG ulLen = 0;

// 为适配器结构申请内存
::GetAdaptersInfo(pAdapterInfo,&ulLen);
pAdapterInfo = (PIP_ADAPTER_INFO)::GlobalAlloc(GPTR, ulLen);

// 取得本地适配器结构信息
if(::GetAdaptersInfo(pAdapterInfo,&ulLen) == ERROR_SUCCESS)
{
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);
}
}

printf(" /n -------------------- 本地主机信息 -----------------------/n/n");
in_addr in;
in.S_un.S_addr = g_dwLocalIP;
printf(" IP Address : s /n", ::inet_ntoa(in));

in.S_un.S_addr = g_dwMask;
printf(" Subnet Mask : s /n", ::inet_ntoa(in));

in.S_un.S_addr = g_dwGatewayIP;
printf(" Default Gateway : s /n", ::inet_ntoa(in));

u_char *p = g_ucLocalMac;
printf(" MAC Address : X-X-X-X-X-X /n", p[0], p[1], p[2], p[3], p[4], p[5]);

printf(" /n /n ");

return TRUE;
}


文章转载自『幽月's Blog』地址: http://a1l.cn/article.asp?id=24229
文章转载自『幽月's Blog』地址: http://a1l.cn/article.asp?id=24229

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值