htons htonl ntohl ntohs 的区别和作用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了htons htonl ntohl ntohs 的区别和作用相关的知识,希望对你有一定的参考价值。

参考技术A   htons、htonl、ntohl、ntohs是用来在网络字节顺序和本机字节顺序之间相互转换的函数。

  可以这么理解:

  n :network;h :host;s:short;l:long

  htons :host to network short型,依次类推。

  具体用法为:

  htons:

  #include

  u_short PASCAL FAR htons( u_short hostshort);

  hostshort:主机字节顺序表达的16位数。

  注释:

  本函数将一个16位数从主机字节顺序转换成网络字节顺序。

  返回值:

  htons()返回一个网络字节顺序的值。

  其余的同理。

以上是关于htons htonl ntohl ntohs 的区别和作用的主要内容,如果未能解决你的问题,请参考以下文章

ntohs, ntohl, htons,htonl对比详解

ntohs, ntohl, htons,htonl的比较和详解

网络与主机字节转换函数:htons ntohs htonl ntohl

转:为什么需要htons(), ntohl(), ntohs(),htons() 函数

socket编程为什么需要htons(), ntohl(), ntohs(),htons() 函数

socket编程为什么需要htons(), ntohl(), ntohs(),htons() 函数