ntohl() 简述 含义 将一个无符号长整形数从网络字节顺序转换为主机字节顺序。 头文件 #include <arpa/inet.h> 函数形式 uint32_t ntohl(uint32_t netlong); netlong:一个以网络[字节顺序表达的32位数。 注释 本函数将一个32位数由网络字节顺序转换为主机字节顺序。 返回值 ntohl()返回一个以主机字节顺序表达的数。 参见 htonl(), htons(), ntohs().