ntohs 函式 (winsock2.h)
ntohs 函式會將u_short從 TCP/IP 網路位元組順序轉換成主機位元組順序 (,這是 Intel 處理器) 的位元組順序。
語法
u_short WSAAPI ntohs(
[in] u_short netshort
);
參數
[in] netshort
TCP/IP 網路位元組順序中的16位數位。
傳回值
ntohs 函式會以主機位元組順序傳回值。 如果 netshort 參數已經在主機位元節順序中,則此函式會反轉它。 由應用程式決定位元組順序是否必須反轉。
備註
ntohs 函式會採用 TCP/IP 網路位元組順序中的 16 位數位, (AF_INET 或AF_INET6位址系列) ,並以主機位元節順序傳回 16 位數位。
ntohs 函式可用來將網路位元組順序中的IP埠號碼轉換為主機位元組順序的IP埠號碼。
ntohs 函式不需要先前已載入 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 |
標頭 | winsock2.h (包含 Winsock2.h) |
程式庫 | Ws2_32.lib |
Dll | Ws2_32.dll |