标签:
首先介绍一下用到的结构体
struct hostent {
const char *h_name; // official name of host
char **h_aliases; // alias list
short h_addrtype; // host address type
short h_length; // length of address
char **h_addr_list; // list of addresses from name server
#define h_addr h_addr_list[0] // address, for backward compatiblity
};
struct in_addr {
in_addr_t s_addr;
};
这里是这个数据结构的详细资料:
struct hostent:
h_name – 地址的正式名称。
h_aliases – 空字节-地址的预备名称的指针。
h_addrtype – 地址类型; 通常是AF_INET。
h_length – 地址的比特长度。
h_addr_list – 零字节-主机网络地址指针,网络字节顺序。
h_addr - h_addr_list中的第一地址。
gethostbyname() 成功时返回一个指向结构体 hostent 的指针,或者 是个空 (NULL) 指针, 完整代码如下:
#include <stdio.h>
#include <unistd.h>
#include <netdb.h>
#include <stdlib.h>
#include <string.h>
#include <arpa/inet.h>
int main()
{
char name[65];
struct hostent* pHost;
struct hostent hs;
int i, j;
int cnt = 0;
char *ips[8];
gethostname(name, sizeof(name));
printf("hostname = %s\n", name);
/* 获取本机地址 */
pHost = &hs;
pHost = gethostbyname(name);
printf("%s\n",pHost->h_name);
printf("%d\n",pHost->h_addr);
struct in_addr *in= (struct in_addr *)pHost->h_addr;
printf("%s\n", inet_ntoa(*in));
for (i = 0; pHost != 0 && pHost->h_addr_list[i] != 0; i++) {
char ip[16]; ip[0] = 0;
for (j = 0; j < pHost->h_length; j++) {
char tmp[16];
if(j > 0) {
strcat(ip, ".");
}
sprintf( tmp, "%u",
(unsigned int)((unsigned char*)pHost->h_addr_list[i])[j]);
strcat(ip, tmp);
}
ips[cnt] = (char*)malloc(64);
strcpy(ips[cnt++], ip);
}
return 0;
}
标签:
原文地址:http://www.cnblogs.com/Chen-Arvin/p/5893907.html