9
    #include <stdio.h> 
    #include <string.h> /* for strncpy */ 
    #include <sys/types.h> 
    #include <sys/socket.h> 
    #include <sys/ioctl.h> 
    #include <netinet/in.h> 
    #include <net/if.h> 

    int 
    main() 
    { 
     int fd;  
     struct ifreq ifr; 

     fd = socket(AF_INET, SOCK_DGRAM, 0);  

     /* I want to get an IPv4 IP address */ 
     ifr.ifr_addr.sa_family = AF_INET; 

     /* I want IP address attached to "eth0" */ 
     strncpy(ifr.ifr_name, "eth0", IFNAMSIZ-1); 

     ioctl(fd, SIOCGIFADDR, &ifr); 

     close(fd); 

     /* display result */ 
     char* ipaddr; 
     ipaddr = inet_ntoa(((struct sockaddr_in *)&(ifr.ifr_addr))->sin_addr); 
     printf("%s\n", ipaddr); 

     return 0; 
    } 

对于这一行:

     ipaddr = inet_ntoa(((struct sockaddr_in *)&(ifr.ifr_addr))->sin_addr);         

我明白了

iptry.c: In function ‘main’:
iptry.c:31:9: warning: assignment makes pointer from integer without a cast [enabled by default]

并且对于

     printf("%s\n", ipaddr);

我得到分段错误。

这有什么问题?

4

3 回答 3

21

inet_ntoa在 header 中定义<arpa/inet.h>
需要#include,否则会出错

于 2013-03-26T15:53:00.363 回答
2

inet_ntoa不需要指针,但需要值

 char* ipaddr; 
 ipaddr = inet_ntoa(((struct sockaddr_in)(ifr.ifr_addr))->sin_addr); 

如果sin_addr是指针,则需要取消引用它。

inet_ntoa如果有错误将返回NULL,因此尝试printfNULL 将导致分段错误...

在此处查找信息,在此处查找手册页。

于 2013-03-26T11:27:23.267 回答
1

如果您不想看到警告,只需转换 inet_ntoa 的返回值

ipaddr = (char *) inet_ntoa(((struct sockaddr_in *)&(ifr.ifr_addr))->sin_addr);

分段错误可能是因为之前的某些函数返回错误(空值)而您没有检查它

相同的代码在我的 Linux Box 中工作。

于 2013-03-26T11:46:29.043 回答