网络字节转换inet_aton & inet_ntoa & inet_addr和inet_pton & inet_ntop

本文介绍了IP地址转换函数,包括inet_aton、inet_addr、inet_ntoa等用于IPv4地址的转换,以及更现代的inet_pton和inet_ntop函数,后者同时支持IPv4和IPv6地址的转换。
部署运行你感兴趣的模型镜像
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
 

您可能感兴趣的与本文相关的镜像

Stable-Diffusion-3.5

Stable-Diffusion-3.5

图片生成
Stable-Diffusion

Stable Diffusion 3.5 (SD 3.5) 是由 Stability AI 推出的新一代文本到图像生成模型,相比 3.0 版本,它提升了图像质量、运行速度和硬件效率

`inet_aton` `inet_ntoa` 是用于在 IP 地址的点分十进制字符串表示形式 32 位二进制整数之间进行转换的标准函数,常用于网络编程中处理 IPv4 地址。这两个函数属于 POSIX 标准库中的 `&lt;arpa/inet.h&gt;` 头文件(在 Linux/Unix 系统中)。 ### `inet_aton` 该函数将 IPv4 地址从字符串表示形式(如 `&quot;192.168.1.1&quot;`)转换网络字节序的 32 位二进制整数(即 `in_addr_t` 类型)。其原型如下: ```c int inet_aton(const char *cp, struct in_addr *inp); ``` - `cp`:指向一个以点分十进制格式表示的 IPv4 地址字符串。 - `inp`:指向一个 `struct in_addr` 结构体的指针,用于存储转换后的二进制地址。 返回值: - 成功时返回 1; - 输入无效则返回 0。 示例代码: ```c #include &lt;stdio.h&gt; #include &lt;arpa/inet.h&gt; int main() { struct in_addr ip; int success = inet_aton(&quot;192.168.1.1&quot;, &amp;ip); if (success) { printf(&quot;Binary representation: %u\n&quot;, ip.s_addr); } else { printf(&quot;Invalid address.\n&quot;); } return 0; } ``` ### `inet_ntoa` 该函数的作用与 `inet_aton` 相反,它将网络字节序的 32 位 IPv4 地址转换为点分十进制字符串形式。其原型如下: ```c char *inet_ntoa(struct in_addr in); ``` - `in`:包含网络字节序的 IPv4 地址的 `struct in_addr` 结构体。 返回值是一个静态分配的字符串,表示转换后的 IP 地址[^1]。 示例代码: ```c #include &lt;stdio.h&gt; #include &lt;arpa/inet.h&gt; int main() { struct in_addr ip; inet_aton(&quot;192.168.1.1&quot;, &amp;ip); char *ip_str = inet_ntoa(ip); printf(&quot;IP Address: %s\n&quot;, ip_str); return 0; } ``` ### 注意事项 - `inet_ntoa` 返回的是一个静态缓冲区的指针,因此在多线程环境中或多次调用时需要注意数据覆盖问题。 - 这两个函数仅支持 IPv4 地址。对于 IPv6 地址,应使用 `inet_pton` `inet_ntop` 函数来替代。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值