netdb.h

#include "netdb.h"
包含一个头文件。头文件名是 netdb.h
MS VC++ 编译器 无此头文件
unix 有。net -- 网络 (network),db -- 数据库(database)

netdb.h 定义了与网络有关的结构,变量类型,宏,函数。
例如:
struct hostent  *gethostbyaddr(const void *addr, size_t len, int type);
struct hostent  *gethostbyname(const char *name);
原文地址:https://www.cnblogs.com/nufangrensheng/p/2953397.html