博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
遍历接口信息
阅读量:6812 次
发布时间:2019-06-26

本文共 729 字,大约阅读时间需要 2 分钟。

  hot3.png

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
int main(int argc, char **argv){ int i = 0; int sockfd = -1; struct ifconf ifconf; unsigned char buf[512]; struct ifreq *ifreq; ifconf.ifc_len = 512; ifconf.ifc_buf = buf; if((sockfd = socket(PF_INET, SOCK_DGRAM, 0)) < 0) return 2; ioctl(sockfd, SIOCGIFCONF, &ifconf); ifreq = (struct ifreq *)buf; for(i = ifconf.ifc_len/sizeof(struct ifreq); i> 0; i--) { printf("name=%s, addr=%s\n", ifreq->ifr_name, inet_ntoa(((struct sockaddr_in *)&(ifreq->ifr_addr))->sin_addr)); ifreq++; } return 0;}

转载于:https://my.oschina.net/plp626/blog/181584

你可能感兴趣的文章
Groovy 与 Python 的差异【翻译】
查看>>
Theano学习笔记(一)——代数
查看>>
GO语言的开源库
查看>>
java中获取系统属性以及环境变量
查看>>
微信开发(03)之新建按钮时报错 errcode 40054
查看>>
TEA encryption with 128bit key
查看>>
操作系统定期定时执行python脚本
查看>>
TCP的拥塞控制
查看>>
FZU 1894 志愿者选拔 单调队列
查看>>
**app后端设计(10)--数据增量更新(省流量)
查看>>
用SoapUI进行Webservice的性能压力测试
查看>>
.NET反编译之manager,base.AutoScaleMode修复
查看>>
光看这图片就知道是大片--今天是五一劳动节尽管还是敲着代码(日常就是这样)然后想不出写什么了,也找不到好的素材,最后开心一下吧...
查看>>
希尔排序算法
查看>>
【Cocos2d-Js基础教学(3)各种基类的定义和使用】
查看>>
java.util.logging.Logger使用详解
查看>>
Sql Server -更新语句,修改的字段是日期时间型,修改其中的月份
查看>>
【转】linux下tty,控制台,虚拟终端,串口,console(控制台终端)详解----不错...
查看>>
Vertica增加一个数据存储的目录
查看>>
小小的告别一下这个博客
查看>>