首页 > 编程语言 > 详细

c++得到本地用户名和IP

时间:2014-06-17 16:38:22      阅读:402      评论:0      收藏:0      [点我收藏+]
bool CDlgResetAlarmInfo::GetLocalUserNameAddIP(CString &a_lstrUserName ,CString &a_IpStr)	
{
	char buf[256]="";

	WSADATA w;

	WSAStartup(0x0101, &w);

	struct hostent *ph = 0;

	gethostname(buf, 256);

	string hostNmae = buf;
    
	a_lstrUserName  = hostNmae.c_str();

	ph = gethostbyname(buf);

	const char *IP =inet_ntoa(*((struct in_addr *)ph->h_addr_list[0]));

	string strIp =IP; 

	a_IpStr = strIp.c_str();

	WSACleanup();

	if (a_lstrUserName == "" || a_IpStr == "")
	{
	    return false;
	}
    return true;
}


c++得到本地用户名和IP,布布扣,bubuko.com

c++得到本地用户名和IP

原文:http://blog.csdn.net/ghevinn/article/details/31747007

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!