htons 函数 (winsock.h)
htons 函数将u_short从主机转换为 TCP/IP 网络字节顺序 (这是 big-endian) 。
语法
u_short htons(
[in] u_short hostshort
);
参数
[in] hostshort
主机字节顺序中的 16 位数字。
返回值
htons 函数以 TCP/IP 网络字节顺序返回值。
注解
htons 函数采用主机字节顺序的 16 位数字,并在 TCP/IP 网络 (AF_INET或AF_INET6地址系列) 中返回采用网络字节顺序的 16 位数字。
htons 函数可用于将主机字节顺序中的 IP 端口号转换为网络字节顺序中的 IP 端口号。
htons 函数不要求 Winsock DLL 以前已通过成功调用 WSAStartup 函数加载。
Windows 8.1和Windows Server 2012 R2:Windows 8.1、Windows Server 2012 R2 及更高版本的 Windows 应用商店应用支持此函数。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows 8.1、Windows Vista [桌面应用 |UWP 应用] |
最低受支持的服务器 | Windows Server 2003 [桌面应用 | UWP 应用] |
目标平台 | Windows |
标头 | winsock.h (包括 Winsock2.h) |
Library | Ws2_32.lib |
DLL | Ws2_32.dll |