8.5 字节序及IP地址转换

目录

主机字节序和网络字节序

什么是字节序?

字节序转换函数

IP地址字节序转换函数


主机字节序和网络字节序

什么是字节序?

字节序是指多字节数据在计算机内存中存储或者网络传输时各字节的存储顺序,分为:
大端字节序 (Big endian)
小端字节序(Little endian)

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

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


 

字节序转换函数  

//头文件
#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);

IP地址字节序转换函数

IP地址可能会存在“点分十进制”的字符串形式,转换之前需要注意
主机字节序一般采用小端字节序
网络字节序转主机字节序以后通常需要转换成“点分十进制”的字符串

//字符串转32位数据
#include <arpa/inet.h>
//IP地址序转换函数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);
//32位数据转字符串
#include <arpa/inet.h>
//IP地址序转换函数char* inet_ntoa(struct in_addr in);int inet_ntop(int af, const void *addr, char *cp);
//支持IPV6的地址转换函数
#include <arpa/inet.h>
//IP地址序转换函数int inet_pton(int af, const char *cp, void *addr);int inet_ntop(int af, const void *addr, char *cp);


 

本文链接:https://my.lmcjl.com/post/9745.html

展开阅读全文

4 评论

留下您的评论.