htons()用法

htons()

  简述:
  将主机的无符号短整形数转换成网络字节顺序。
  #include <winsock.h>
  u_short PASCAL FAR htons( u_short hostshort);
  hostshort:主机字节顺序表达的16位数。
  注释:
  本函数将一个16位数从主机字节顺序转换成网络字节顺序。
  返回值:
  htons()返回一个网络字节顺序的值。
  参见:
  htonl(), ntohl(), ntohs().
  ---------------------------------------------
  简单地说,htons()就是将一个数的高低位互换
  (如:12 34 --> 34 12)
  VB表示:
  MsgBox Hex(htons(&H1234))
  显示值为 3412

你可能感兴趣的:(网络,vb,pascal,hex)