免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3377 | 回复: 2
打印 上一主题 下一主题

linux C 获取IP [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-02-25 08:59 |只看该作者 |倒序浏览
本帖最后由 liuhengloveyou 于 2010-02-25 09:01 编辑
  1. #include <sys/socket.h>
  2. #include <unistd.h>
  3. #include <net/if.h>
  4. #include <string.h>
  5. #include <stdio.h>
  6. #include <linux/sockios.h>
  7. #include <arpa/inet.h>

  8. #define BUFSIZE 16

  9. /*
  10. * 获得指定网口的IP
  11. */
  12. int get_inetip(char *in_name, char *buf)
  13. {   
  14.      int socket_fd;
  15.      struct ifreq ifr;
  16.      struct ifconf conf;

  17.      if ((socket_fd = socket(AF_INET,SOCK_DGRAM,0)) == -1) {
  18.           perror("socket error!\n");
  19.           return -1;
  20.      }

  21.      strcpy(ifr.ifr_name, in_name);
  22.   
  23.      if(ioctl(socket_fd,SIOCGIFADDR,&ifr) < 0) {
  24.           perror("ioctl error\n");
  25.           return -1;
  26.      }
  27.      
  28.      strcpy(buf, inet_ntoa(((struct sockaddr_in *)&(ifr.ifr_addr))->sin_addr));

  29.      return 0;
  30. }



  31. int main(void)
  32. {
  33.      char buff[BUFSIZE];
  34.      get_inetip("eth0", buff);
  35.      printf("%s\n", buff);
  36.      
  37.      return 0;
  38. }

复制代码
昨天要这功能, 论坛里没找到很好的实现, 就自己实现了个. 比较简单.

论坛徽章:
0
2 [报告]
发表于 2010-02-25 12:43 |只看该作者
呵呵,每次用到时候都是去查 man ……

论坛徽章:
0
3 [报告]
发表于 2010-03-11 17:03 |只看该作者
我是来学习的。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP