#include <arpa/inet.h> uint32_t htonl(uint32_t hostlong); uint16_t htons(uint16_t hostshort); uint32_t ntohl(uint32_t netlong); uint16_t ntohs(uint16_t netshort);
htons() 関数は unsigned short integer hostshort を ホストバイトオーダーからネットワークバイトオーダーに変換する。
ntohl() 関数は unsigned integer netlong を ネットワークバイトオーダーからホストバイトオーダーに変換する。
ntohs() 関数は unsigned short integer netshort を ネットワークバイトオーダーからホストバイトオーダーに変換する。
i80x86 のホストバイトオーダーでは最下位バイトが若いアドレスに配置されるが、 インターネットで用いられるネットワークバイトオーダーでは最上位バイト が先に配置される。
Interface | Attribute | Value |
htonl(), htons(), ntohl(), ntohs() | Thread safety | MT-Safe |
いくつかのシステムでは、 <arpa/inet.h> の代わりに <netinet/in.h> をインクルードする必要がある。
[man1]
[man2]
[man3]
[man4]
[man5]
[man6]
[man7]
[man8]
[a]
[b]
[c]
[d]
[e]
[f]
[g]
[h]
[i]
[j]
[k]
[l]
[m]
[n]
[o]
[p]
[q]
[r]
[s]
[t]
[u]
[v]
[w]
[x]
[y]
[z]