码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2014-06-17 16:38:03      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   tar   get   2014   

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

标签:class   blog   code   tar   get   2014   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!