我正在尝试将字符串中的IP地址复制到struct sockaddr_in但不知何故弹出一些错误。
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdio.h>
#include <string.h>
int main(void)
{
char *buf = "128.10.25.102:30015";
char ip[30];
struct sockaddr_in s1_addport;
int i = 0;
while (buf[i] != ':') i++;
strncpy(ip, &buf[0], i);
ip[strlen(ip)] = '\0';
printf("ip: %s, strlen:%zu\n",ip,strlen(ip));
inet_aton(ip,&s1_addport.sin_addr);
printf("Server IP: %s\n",inet_ntoa(s1_addport.sin_addr));
return 0;
}
上述代码的输出显示:
ip: 128.10.25.102, strlen:13
Server IP: 0.0.0.0
从ip
字符串复制值时出现一些错误,我无法弄清楚。可能是什么原因?
答案 0 :(得分:3)
这是您的pastebin代码中的问题:
ip[strlen(ip)]='\0';
(尝试追加null终止符,但使用strlen,它本身依赖于null终结符)。
以下是修复:
....
while(buf[i]!=':')
i++;
strncpy(ip,&buf[0],i);
ip[i]='\0';
puts(ip);
....