l8-d5 字节序

一、主机字节序和网络字节序

字节序是指多字节数据在计算机内存中存储或者网络传输时各字节的存储顺序,分为:

        大端字节序 (Big endian)

        小端字节序(Little endian)

示例:0x11223344

l8-d5 字节序_第1张图片

一般主机当中使用小端字节序

网络通信当中必须使用大端字节序

二、字节序转换函数

#include

        uint32_t htonl(uint32_t hostlong);

        uint16_t htons(uint16_t hostshort);

        uint32_t ntohl(uint32_t netlong);

        uint16_t ntohs(uint16_t netshort);

本机转网络

网络转主机

32位数据

htonl

ntohl

16位数据

htons

ntohs

三、IP地址字节序转换函数

IP地址可能会存在“点分十进制”的字符串形式,转换之前需要注意

主机字节序一般采用小端字节序

网络字节序转主机字节序以后通常需要转换成“点分十进制”的字符串

#include

        in_addr_t inet_addr(const char *cp);

        int inet_aton(const char *cp, struct in_addr *addr);

        int inet_pton(int af, const char *cp, void *addr);

你可能感兴趣的:(网络)