gpt4 book ai didi

c - 将 IP 地址从 int 更改为 string 的问题

转载 作者:太空宇宙 更新时间:2023-11-04 04:59:32 25 4
gpt4 key购买 nike

我正在尝试将 IP 地址(当前为 IPv4,但可识别 IPv6)从 int 数组格式转换为格式化字符串。我正在使用 Ubuntu Linux。

我区分了IPv4和IPv6地址,然后尝试将int数组转换为字符串。

这是我正在使用的代码:

#include <stdio.h>
#include <string.h>
#include <arpa/inet.h>

int main(void)
{
int i;
unsigned int val32;
int ma_ip[4];
char m_ip[4];
char ipaddr[INET_ADDRSTRLEN], ipv6[INET6_ADDRSTRLEN];
int no = 0;
char *token;
char s3[] = "10.1.35.1";
/* just example. test only one ip address.. */
for(i = 0; i < 1; i++)
{
char *mm = strstr(s3, ":");
if( *mm != NULL)
{
token = strtok(s3, ":");
while(token != NULL)
{
token = strtok(NULL, ":");
no++;
}
if(no >= 2 && no <= 7)
printf("\nthis is ipv6\n");
else
printf("\nwrong ipv6\n");
}
else
{
token = strtok(s3, ".");
while(token != NULL)
{
token = strtok(NULL, ".");
no++;
}
if(no == 4)
{
printf("\nthis is ipv4.\n");
val32 = inet_addr(s3)
ma_ip[i] = val32;
}
else
printf("\nwrong ipv4.\n")
}
inet_ntop(AF_INET,&ma_ip[0],ipaddr,INET_ADDRSTRLEN);
printf("\nipaddr = %s\n", ipaddr);
strcpy(&m_ip[0], ipaddr);
printf("\nafter strcpy = %s\n", m_ip[0]);
}
}

这个输出是错误的:

ipaddr = 0.0.0.10

实际上应该是:

ipaddr = 10.1.35.1

我在 strcpy 之后的最后一个 printf 中也遇到了这个错误:

format ‘%s’ expects argument of type ‘char *’, but argument 2 has type ‘int’ error !**

为什么会发生这种情况,我该如何解决?

最佳答案

m_ip[0] 指向第一个元素的位置。如果您想打印字符串,请尝试使用 m_ip 即数组名称或 &m_ip[0] ,它基本上传递第一个元素的地址,可以解释为pointer 本质上会导致段错误。使用 m_ip 它会打印(但仍然只有 0.0.0.10)。

程序中的另一点是,在strstr操作之后,您应该将mmNULL进行比较。

对于网络地址操作,我建议你看看this question .

关于c - 将 IP 地址从 int 更改为 string 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38044688/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com