ntohl()

ntohl()

ntohl()指的是ntohl函數,是將一個無符號長整形數從網路位元組順序轉換為主機位元組順序, ntohl()返回一個以主機位元組順序表達的數。

簡述


頭文件

linux系統:#include
Windows系統:#include

函數形式

uint32_t ntohl(uint32_t netlong);
netlong:一個以網路位元組順序表達的32位數。

註釋


本函數將一個32位數由網路位元組順序轉換為主機位元組順序。
Windows下調用此函數時,程序需要載入Ws2_32.lib鏈接庫。

返回值


ntohl()返回一個以主機位元組順序表達的數。

參見


htonl(), htons(), ntohs().