Scroll to navigation

BYTEORDER(3) Manual do Programador do Linux BYTEORDER(3)

NOME

htonl, htons, ntohl, ntohs - muda a ordem dos bytes para a ordem do 'host' ou a da rede

SINOPSE

#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);

DESCRIÇÃO

The htonl() function converts the unsigned integer hostlong from host byte order to network byte order.

The htons() function converts the unsigned short integer hostshort from host byte order to network byte order.

The ntohl() function converts the unsigned integer netlong from network byte order to host byte order.

The ntohs() function converts the unsigned short integer netshort from network byte order to host byte order.

A ordem de bytes na arquitetura i386 começa com o byte menos significativo, e, na rede (por exemplo na internet), o byte mais significativo vem primeiro.

ATRIBUTOS

Para uma explicação dos termos usados nesta seção, consulte attributes(7).

Interface Atributo Valor
htonl(), htons(), ntohl(), ntohs() Thread safety MT-Safe

DE ACORDO COM

POSIX.1-2001, POSIX.1-2008.

Some systems require the inclusion of <netinet/in.h> instead of <arpa/inet.h>.

VEJA TAMBÉM

bswap(3), endian(3), gethostbyname(3), getservent(3)

COLOFÃO

Esta página faz parte da versão 5.10 do projeto Linux man-pages. Uma descrição do projeto, informações sobre relatórios de bugs e a versão mais recente desta página podem ser encontradas em https://www.kernel.org/doc/man-pages/.

TRADUÇÃO

A tradução para português brasileiro desta página man foi criada por Paulo César Mendes <drpc@ism.com.br> e André Luiz Fassone <lonely_wolf@ig.com.br>

Esta tradução é uma documentação livre; leia a Licença Pública Geral GNU Versão 3 ou posterior para as condições de direitos autorais. Nenhuma responsabilidade é aceita.

Se você encontrar algum erro na tradução desta página de manual, envie um e-mail para a lista de discussão de tradutores.

15 setembro 2017 GNU