系统相关
首页 > 系统相关> > 获取计算机名和IP地址(linux c++版本)

获取计算机名和IP地址(linux c++版本)

作者:互联网

/*
获取计算机名和IP地址(linux c++版本)
root@yiyouserver:~/XWH/xwh# g++ -o gethostname gethostname.cpp
root@yiyouserver:~/XWH/xwh# ./gethostname
计算机名:yiyouserver
IP:192.168.205.128
*/
#include <stdio.h>
#include <unistd.h>// 使用gethostname函数包含该头文件即可
#include <sys/socket.h>
#include <netdb.h>

// 主机名转成点分 IP 地址
void HostNameToIP(const char* szHostName, char* szIP,int len)
{
/* 即要解析的域名或主机名 */
hostent *host_entry = gethostbyname(szHostName);
if( 0 != host_entry)
{

snprintf(szIP, len, "%d.%d.%d.%d",
host_entry->h_addr_list[0][0] & 0x00ff,
host_entry->h_addr_list[0][1] & 0x00ff,
host_entry->h_addr_list[0][2] & 0x00ff,
host_entry->h_addr_list[0][3] & 0x00ff);
}
}

int main()
{
char szHostName[256]={0};
gethostname(szHostName,256);
printf("计算机名:%s\n",szHostName);
char szIP[20] = {0};
HostNameToIP(szHostName, szIP,sizeof(szIP)); // 主机名转成点分 IP 地址
printf("IP:%s\n",szIP);

return 0;
}

标签:szHostName,gethostname,IP地址,c++,char,host,szIP,linux,entry
来源: https://www.cnblogs.com/Ivanhan2019/p/12817874.html