使用這個東西,首先要包含2個頭文件:
#include <netdb.h>
#include <sys/socket.h>
struct hostent *gethostbyname(const char *name);
這個函數的傳入值是域名或者主機名,例如" www.google.com.tw","wpc "等等。
傳出值,是一個hostent的結構(如下)。如果函數調用失敗,將返回NULL。
[cpp]
- struct hostent {
- char *h_name;
- char **h_aliases;
- int h_addrtype;
- int h_length;
- char **h_addr_list;
- };
解釋一下這個結構:
其中,
char *h_name 表示的是主機的規范名。例如 www.google.com 的規范名其實是 www.l.google.com 。
char **h_aliases 表示的是主機的別名。 www.google.com 就是google他自己的別名。有的時候,有的主機可能有好幾個別名,這些,其實都是為了易於用戶記憶而為自己的網站多取的名字。
int h_addrtype 表示的是主機ip地址的類型,到底是ipv4(AF_INET),還是ipv6(AF_INET6)
int h_length 表示的是主機ip地址的長度
int **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。
下面的例子
[cpp]
- #include <stdio.h>
- #include <stdlib.h>
- #include <netdb.h>
- #include <sys/socket.h>
-
- int main(int argc, char *argv[])
- {
- struct hostent *h;
- if (argc != 2) { /* 檢查命令行 */
- fprintf(stderr,"usage: getip address\n");
- exit(1);
- }
- if ((h=gethostbyname(argv[1])) == NULL) { /* 取得地址信息 */
- error("gethostbyname");
- exit(1);
- }
- printf("Host name : %s\n", h->h_name);
- printf("IP Address : %s\n",inet_ntoa(*((struct in_addr *)h->h_addr)));
- return 0;
- }
運行結果如下