/*获取计算机名和IP地址(linux c++版本)root@yiyouserver:~/XWH/xwh# g++ -o gethostname gethostname.cpproot@yiyouserver:~/XWH/xwh# ./gethostname计算机名:yiyouserverIP:192.168.205.128*/#include stdio.h...
/*
获取计算机名和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;
}
本文标题为:获取计算机名和IP地址(linux c++版本)
基础教程推荐
- C++详细实现完整图书管理功能 2023-04-04
- C利用语言实现数据结构之队列 2022-11-22
- C语言基础全局变量与局部变量教程详解 2022-12-31
- C++中的atoi 函数简介 2023-01-05
- C++使用easyX库实现三星环绕效果流程详解 2023-06-26
- 一文带你了解C++中的字符替换方法 2023-07-20
- C/C++编程中const的使用详解 2023-03-26
- C语言 structural body结构体详解用法 2022-12-06
- 如何C++使用模板特化功能 2023-03-05
- 详解c# Emit技术 2023-03-25