关于gethostname
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于gethostname相关的知识,希望对你有一定的参考价值。
大家好.我现在遇到一个问题.我发现gethostname和gethostbyname这两个函数在DEBUG版本下是正常的.但是在RELEASE版本中就不正常了.不知道大家遇到过这个问题没有.我现在有一段完整的代码.大家可以试试.在VS2005的DEBUG和RELEASE下会有不同.我实在不知道为什么会这样,急需高人解答!!!
需要包含的头文件:
#include "Winsock2.h"
#pragma comment( lib, "Ws2_32.lib" )
代码:
const char* get_first_ip(void)
string aaa=GetHostName();
char szHostName[100];
const char* pszAddr = NULL;
struct hostent * pHost;
int i;
WSADATA wsaData;
WSAStartup(0x202, &wsaData );
if( gethostname(szHostName, 100) == 0 )
pHost = gethostbyname(szHostName);
for( i = 0; pHost!= NULL && pHost->h_addr_list[i]!= NULL; i++ )
/*对每一个IP地址进行处理*/
pszAddr = inet_ntoa (*(struct in_addr *)pHost->h_addr_list[i]);
break;
WSACleanup();
return pszAddr;
主函数当中调用:
char a[100];
strcpy(a,get_first_ip());
大家可以看看a的值.
等待中..........
可是那个gethostname需要的参数就是const char*类型的啊,怎么用宽字符啊。。。说的明白一点啊。。。
使用gethostname()函数和gethostbyname()函数获取主机相关信息
gethostname() : 返回本地主机的标准主机名。
原型如下:
#include <unistd.h>
int gethostname(char *name, size_t len);
参数说明:
这个函数需要两个参数:
接收缓冲区name,其长度必须为len字节或是更长,存获得的主机名。
接收缓冲区name的最大长度
返回值:
如果函数成功,则返回0。如果发生错误则返回-1。错误号存放在外部变量errno中。
gethostbyname()函数说明——用域名或主机名获取IP地址
包含头文件
#include <netdb.h>
#include <sys/socket.h>
函数原型
struct hostent *gethostbyname(const char *name);
这个函数的传入值是域名或者主机名,例如"www.google.cn"等等。传出值,是一个hostent的结构。如果函数调用失败,将返回NULL。
返回hostent结构体类型指针
1
2
3
4
5
6
7
8
|
struct hostent { char *h_name; /* official name of host */ char **h_aliases; /* alias list */ int h_addrtype; /* host address type */ int h_length; /* length of address */ char **h_addr_list; /* list of addresses */ } #define h_addr h_addr_list[0] /* for backward compatibility */ |
hostent->h_name
表示的是主机的规范名。例如www.google.com的规范名其实是www.l.google.com。
hostent->h_aliases
表示的是主机的别名.www.google.com就是google他自己的别名。有的时候,有的主机可能有好几个别名,这些,其实都是为了易于用户记忆而为自己的网站多取的名字。
hostent->h_addrtype
表示的是主机ip地址的类型,到底是ipv4(AF_INET),还是pv6(AF_INET6)
hostent->h_length
表示的是主机ip地址的长度
hostent->h_addr_lisst
表示的是主机的ip地址,注意,这个是以网络字节序存储的。千万不要直接用printf带%s参数来打这个东西,会有问题的哇。所以到真正需要打印出这个IP的话,需要调用inet_ntop()。
const char *inet_ntop(int af, const void *src, char *dst, socklen_t cnt) :
这个函数,是将类型为af的网络地址结构src,转换成主机序的字符串形式,存放在长度为cnt的字符串中。返回指向dst的一个指针。如果函数调用错误,返回值是NULL。
实例如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#include <stdio.h> #include <sys/socket.h> #include <netdb.h> #include <unistd.h> #include <netinet/in.h> #include <arpa/inet.h> #include <stdlib.h> void handler( int sig){ printf ( "recv a sig=%d
" ,sig); exit (EXIT_SUCCESS); } #define ERR_EXIT(m) do { perror (m); exit (EXIT_FAILURE); } while (0); int main( void ) { char host[100] = {0}; if (gethostname(host, sizeof (host)) < 0){ ERR_EXIT( "gethostname" ); } struct hostent *hp; if ((hp=gethostbyname(host)) == NULL){ ERR_EXIT( "gethostbyname" ); } int i = 0; while (hp->h_addr_list[i] != NULL) { printf ( "hostname: %s
" ,hp->h_name); printf ( " ip: %s
" ,inet_ntoa(*( struct in_addr*)hp->h_addr_list[i])); i++; } return 0; } |
编译运行
-----------------------------
# gcc -o getinfo getinfo.c
# ./getinfo
hostname: www.server1.com
ip: 69.172.201.208
注意:试验时主机名要是域名格式(如www.server1.com,若函数为server1时gethostbuname函数返回为NULL),gethostbyname()函数才能获取到信息,否则返回NULL
以上是关于关于gethostname的主要内容,如果未能解决你的问题,请参考以下文章