网络信息API
gethostbyname和gethostbyaddr
- gethostbyname根据主机名称获取主机的完整信息。这个函数是通常先在本地的
/etc/hosts.conf
配置文件中查找主机,如果没有找到,再去访问DNS服务器。 - gethostbyaddr根据IP地址获取主机的完整信息。
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#include <netdb.h> struct hostent { char* h_name; // 主机名 char** h_aliases; // 主机别名列表,可能有多个 int h_addrtype; // 地址类型(地址族) int h_length; // 地址长度 char** h_addr_list; // 按网络字节序列出的主机IP地址列表 }; struct hostent* gethostbyname(const char* name); struct hostent* gethostbyaddr(const void* addr, size_t len, int type); |
getservbyname和getservbyport
- getservbyname根据成名获取某个服务的完整信息。getservbyport根据端口号获取某个服务的完整信息。
- 它们实际上都是通过读取
/etc/services
文件夹来获取服务的信息的。
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#include <netdb.h> struct servent { char* s_name; // 服务名称 char** s_aliases; // 服务的名称列表,可能有多个 int s_port; // 端口号 char* s_proto; // 服务类型,通常是TCP或者UDP }; struct servent* getservbyname(const char* name, const char* proto); struct servent* getservbyport(int port, const char* proto); // proto指定服务类型 |
getaddrinfo
- getaddrinfo能通过主机名获得IP地址,也能通过服务名获取端口号。
- 它是否可重入取决于其内部调用的gethostbyname和getservbyname函数是否是它们的可重入版本。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#include <netdb.h> struct addrinfo { int ai_flags; int ai_family; int ai_socktype; int ai_protocol; socklen_t ai_addrlen; char* ai_canonname; struct sockaddr* ai_addr; struct sockinfo* ai_next; }; int getaddrinfo(const char* hostname, const char* service, const char* struct addrinfo* hints, struct addrinfo** result); |
getnameinfo
- getnameinfo能通过socket地址同时获得以字符串表示的主机名(内部使用的gethostbyaddr),和服务名(内部使用的是getservbyport)。
- 它是否可重入取决于其内部调用的gethostbyaddr和getservbyport函数是否是它们的可重入版本。
1 2 3 4 |
#include <netdb.h> int getnameinfo(const struct sockaddr* sockaddr, socklen_t addrlen, char* host, socklen_t hostlen, char* serv, socklen_t servlen, int flags); |
错误码
- Linux下strerror函数能将数值错误码errno转成易读的字符串形式。
1 2 3 |
#include <netdb.h> const char* gai_strerror(int error); |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 包管理器:各平台安装卸载相关记述09/17
- ♥ Shell 语法记述 第四篇09/05
- ♥ 创建socket环境:hello socket10/16
- ♥ Linux_ 命令大全 磁盘管理03/16
- ♥ Socket基础:TCP篇10/16
- ♥ Linux_ 命令大全 Windows System03/16