Linux 之网络编程-地址转换
程序员文章站
2022-04-12 16:18:41
...
1、IPV4地址转换函数
/*将点分十进制IP地址转换为32位网络字节顺序的IP地址*/
int inet_addr(const char* cp);
/*将点分十进制IP地址转换为32位主机字节顺序的IP地址*/
int inet_network(const char* cp);
/*将32位网络字节顺序的IP地址转换为点分十进制的字符串*/
char* inet_ntoa(struct in_addr in);
/*将点分十进制的字符串转换为32位网络字节顺序的IP地址*/
char* inet_aton(const char* cp,struct in_addr in);
2、地址类型转换
/*将存在在cp位置,地址类型为af的点分十进制地址转换到buf中,若af为IPv4,则buf应为struct in_addr,若af为IPv6,则buf应为struct in6_addr*/
int inet_pton(int af,const char* cp,void* buf);
/*将存储在位置cp,地址协议为af的网络字节序的32位IP地址转换为点分十进制,并存储在长度为len的buf中,若af为IPv4,则cp应为struct in_addr类型,若af为IPv6,则cp应为struct in6_addr类型*/
char* inet_ntop(int af,void* cp,char* buf,socketlen_t len);
3、通过IP地址获取网络号和主机号(IPv4)
/*从IP地址in(32位网络字节序)中提取标准主机号*/
int inet_lnaof(struct in_addr in);
/*从IP地址in(32位网络字节序)中提取标准网络号*/
int inet_netof(struct in_addr in);
/*将网络号(网络字节序)和主机号(网络字节序)组合成一个标准IP地址(网络字节序)*/
struct in_addr inet_makeaddr(int net,int host);
4、字节顺序转换函数
/*长字节字节顺序转换函数*/
unsigned long int ntohl(unsigned long int net);
unsigned long int htonl(unsigned long int host);
/*短字节字节顺序转换函数*/
unsigned short int ntohl(unsigned short int net);
unsigned short int htonl(unsigned short int host);
下一篇: node+token做出用户验证