标签:指针 null const col 字节序 网络 注意 get 字节
#include <netdb.h> struct servent *getservbyname(const char *servname, const char *protoname); 返回:成功为非空指针,否则为NULL且设置h_errno
struct servent { char *s_name; char **s_aliases; int s_port; char *s_proto; };
#include <netdb.h> struct servent *getservbyport(int port, const char *protoname); 返回:成功为非空指针,否则为NULL且设置h_errno 注意:port参数的值必须为网络字节序
标签:指针 null const col 字节序 网络 注意 get 字节
原文地址:https://www.cnblogs.com/soldierback/p/10740388.html