htons, htonl, ntohs, ntohl的意思
htons() 将主机的无符号短整形数转换成网络字节顺序. host - > net (short)
htonl()
将主机的无符号长整形数转换成网络字节顺序. host - > net (long)ntohs() 将主机的网络字节顺序转换成无符号短整形数. host - > net (short)
ntohl() 将主机的网络字节顺序转换成无符号长整形数. host - > net (long)
htonl()
将主机的无符号长整形数转换成网络字节顺序. host - > net (long)