BYTEORDER(3N) — Silicon Graphics
NAME
htonl, htons, ntohl, ntohs − convert values between host and network byte order
SYNOPSIS
netlong = htonl(hostlong);
u_long netlong, hostlong;
netshort = htons(hostshort);
u_short netshort, hostshort;
hostlong = ntohl(netlong);
u_long hostlong, netlong;
hostshort = ntohs(netshort);
u_short hostshort, netshort;
DESCRIPTION
These routines convert 16- and 32-bit quantities between network byte order and host byte order.
These routines are frequently used to convert Internet addresses and ports returned by rhost(3N) to native byte order.
SEE ALSO
Version 2.4 — September 29, 2021