码迷,mamicode.com
首页 > 其他好文 > 详细

tcpdump的源码分析

时间:2015-08-17 19:15:36      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

在源文件 tcpdump.c 中:

结构体数组“static struct printer printers[]”定义了tcpdump所跟参数及其对一个的处理函数。


struct printer {
        if_printer f;                  // 处理函数
    int type;                      // 类型
};

 

然后通过函数“lookup_printer”中传入的参数 type 来遍历结构体数组printers,并且返回处理函数。若查找不到,返回NULL.

 

tcpdump的源码分析

标签:

原文地址:http://www.cnblogs.com/rohens-hbg/p/4737142.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!