1、htons 把unsigned short类型从主机序转换到网络序 2、htonl 把unsigned long类型从主机序转换到网络序 3、ntohs 把unsigned short类型从网络序转换到主机序 4、ntohl 把unsigned long类型从网络序转换到主机序 在使用little endian的系统中 这些函数会把字节序进行转换,在使用big endian类型的系统中这些函数会定义...