本文主要是介绍网络字节转换inet_aton inet_ntoa inet_addr和inet_pton,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
网络字节转换inet_aton & inet_ntoa & inet_addr和inet_pton
分类: LINUX
inet_aton,inet_addr 和 inet_ntoa 在点分十进制数串(如, “192.168.1.10") 与他的 32 位网络字节二进制值之前转换 IPV4 地址,有 2 个比较新的函数 inet_pton 和 inet_ntop ,这 2 个对 IPV4 和 IPV6 地址都能处理
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
int inet_aton(const char *cp, struct in_addr *inp);
in_addr_t inet_addr(const char *cp);
char *inet_ntoa(struct in_addr in);
inet_aton() converts the Internet host address cp from the standard numbers-and-dots notation into binary data and stores it in the struc ture that inp points to. inet_aton() returns non-zero if the address is valid, zero if not.
inet_aton() 转换网络主机地址 cp 为二进制数值,并存储在 struct in_addr 结构中,即第二个参数 *inp, 函数返回非 0 表示 cp 主机有地有效,返回 0 表示主机地址无效。
The inet_addr() function converts the Internet host address cp from numbers-and-dots notation into binary data in network byte order. If the input is invalid, INADDR_NONE (usually -1) is returned. This is an
obsolete interface to inet_aton(), described immediately above; it is obsolete because -1 is a valid address (255.255.255.255), and inet_aton() provides a cleaner way to indicate error return.
inet_addr 函数转换网络主机地址(如 192.168.1.10) 为网络字节序二进制值,如果参数 char *cp 无效,函数返回 -1(INADDR_NONE), 这个函数在处理地址为 255.255.255.255 时也返回 - 1,255.255.255.255 是一个有效的地址,不过 inet_addr 无法处理 ;
The inet_ntoa() function converts the Internet host address in given in network byte order to a string in standard numbers-and-dots notation. The string is returned in a statically allocated buffer, which subse quent calls will overwrite.
inet_ntoa 函数转换网络字节排序的地址为标准的 ASCII 以点分开的地址 ,, 该函数返回指向点分开的字符串地址的指针,该字符串的空间为静态分配的,这意味着在第二次调用该函数时,上一次调用将会被重写(复盖),所以如果需要保存该串最后复制出来自己管理!
现在一般使用 inet_aton 和 inet_ntoa 来处理网络字节和主机字节之间的转换 ;
有两个更新的函数 inet_pton 和 inet_ntop 这 2 个函数能够处理 ipv4 和 ipv6, 原型如下
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
int inet_pton(int af, const char *src, void *dst);
这个函数转换字符串到网络地址,第一个参数 af 是地址族,转换后存在 dst 中
inet_pton 是 inet_addr 的扩展,支持的多地址族有下列:
AF_INET
src 为指向字符型的地址,即 ASCII 的地址的首地址( ddd.ddd.ddd.ddd 格式的),函数将该地址
转换为 in_addr 的结构体,并复制在 *dst 中
AF_INET6
src 为指向 IPV6 的地址,,函数将该地址
转换为 in6_addr 的结构体,并复制在 *dst 中
如果函数出错将返回一个负值,并将 errno 设置为 EAFNOSUPPORT ,如果参数 af 指定的地址族和 src 格式不对,函数将返回 0 。
函数 inet_ntop 进行相反的转换原型如下
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
const char *inet_ntop(int af, const void *src, char *dst, socklen_t cnt);
这个函数转换网络二进制结构到 ASCII 类型的地址,参数的作用和上面相同,只是多了一个参数 socklen_t cnt, 他是所指向缓存区 dst 的大小,避免溢出,如果缓存区太小无法存储地址的值,则返回一个空指针,并将 errno 置为 ENOSPC
例子:
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
int main(void)
{
char* ip = "192.168.1.87";
struct in_addr inp;
u_int32_t addr = 0x5701a8c0;
inet_aton(ip, &inp);
printf("%x ", inp);
inp.s_addr = addr;
printf("%s \n", inet_ntoa(inp));
return 0;
}
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
int inet_aton(const char *cp, struct in_addr *inp);
in_addr_t inet_addr(const char *cp);
char *inet_ntoa(struct in_addr in);
inet_aton() converts the Internet host address cp from the standard numbers-and-dots notation into binary data and stores it in the struc ture that inp points to. inet_aton() returns non-zero if the address is valid, zero if not.
inet_aton() 转换网络主机地址 cp 为二进制数值,并存储在 struct in_addr 结构中,即第二个参数 *inp, 函数返回非 0 表示 cp 主机有地有效,返回 0 表示主机地址无效。
The inet_addr() function converts the Internet host address cp from numbers-and-dots notation into binary data in network byte order. If the input is invalid, INADDR_NONE (usually -1) is returned. This is an
obsolete interface to inet_aton(), described immediately above; it is obsolete because -1 is a valid address (255.255.255.255), and inet_aton() provides a cleaner way to indicate error return.
inet_addr 函数转换网络主机地址(如 192.168.1.10) 为网络字节序二进制值,如果参数 char *cp 无效,函数返回 -1(INADDR_NONE), 这个函数在处理地址为 255.255.255.255 时也返回 - 1,255.255.255.255 是一个有效的地址,不过 inet_addr 无法处理 ;
The inet_ntoa() function converts the Internet host address in given in network byte order to a string in standard numbers-and-dots notation. The string is returned in a statically allocated buffer, which subse quent calls will overwrite.
inet_ntoa 函数转换网络字节排序的地址为标准的 ASCII 以点分开的地址 ,, 该函数返回指向点分开的字符串地址的指针,该字符串的空间为静态分配的,这意味着在第二次调用该函数时,上一次调用将会被重写(复盖),所以如果需要保存该串最后复制出来自己管理!
现在一般使用 inet_aton 和 inet_ntoa 来处理网络字节和主机字节之间的转换 ;
有两个更新的函数 inet_pton 和 inet_ntop 这 2 个函数能够处理 ipv4 和 ipv6, 原型如下
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
int inet_pton(int af, const char *src, void *dst);
这个函数转换字符串到网络地址,第一个参数 af 是地址族,转换后存在 dst 中
inet_pton 是 inet_addr 的扩展,支持的多地址族有下列:
AF_INET
src 为指向字符型的地址,即 ASCII 的地址的首地址( ddd.ddd.ddd.ddd 格式的),函数将该地址
转换为 in_addr 的结构体,并复制在 *dst 中
AF_INET6
src 为指向 IPV6 的地址,,函数将该地址
转换为 in6_addr 的结构体,并复制在 *dst 中
如果函数出错将返回一个负值,并将 errno 设置为 EAFNOSUPPORT ,如果参数 af 指定的地址族和 src 格式不对,函数将返回 0 。
函数 inet_ntop 进行相反的转换原型如下
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
const char *inet_ntop(int af, const void *src, char *dst, socklen_t cnt);
这个函数转换网络二进制结构到 ASCII 类型的地址,参数的作用和上面相同,只是多了一个参数 socklen_t cnt, 他是所指向缓存区 dst 的大小,避免溢出,如果缓存区太小无法存储地址的值,则返回一个空指针,并将 errno 置为 ENOSPC
例子:
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
int main(void)
{
char* ip = "192.168.1.87";
struct in_addr inp;
u_int32_t addr = 0x5701a8c0;
inet_aton(ip, &inp);
printf("%x ", inp);
inp.s_addr = addr;
printf("%s \n", inet_ntoa(inp));
return 0;
}
这篇关于网络字节转换inet_aton inet_ntoa inet_addr和inet_pton的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!