摘要: makedefconfigrm:cannotremove`tmp/.host.mk':Permissiondenied退到trunk上级目录su rootsudochown-R777trunk 阅读全文
posted @ 2015-08-27 17:19 hbg-rohens 阅读(1123) 评论(0) 推荐(0) 编辑
摘要: 检查是否已安装openssl:sudo apt-get install openssl如果已安装执行以下操作:sudo apt-get install libssl-devsudo apt-get install libssl0.9.8 阅读全文
posted @ 2015-08-27 17:01 hbg-rohens 阅读(990) 评论(0) 推荐(0) 编辑
摘要: ###安装autoconfwget http://mirrors.kernel.org/gnu/autoconf/autoconf-2.65.tar.gz \&& tar -xzvf autoconf-2.65.tar.gz \&& cd autoconf-2.65 \&& ./configure ... 阅读全文
posted @ 2015-08-27 16:15 hbg-rohens 阅读(768) 评论(0) 推荐(0) 编辑
摘要: 在Debian或 ubuntu 64位下运行 ./xxx 会跳出来说没有这个文件或者目录,但是ls看又有这个文件,很是奇怪。其实原因很简单,是因为他没有32位的运行库 ia32-libs,直接安装即可。apt-get install ia32-libsDebian可能安装不成功,那么可以使用如下方法... 阅读全文
posted @ 2015-08-27 15:10 hbg-rohens 阅读(64908) 评论(3) 推荐(0) 编辑
摘要: 头文件:#include 定义函数:char * strtok(char *s, const char *delim);函数说明:strtok()用来将字符串分割成一个个片段。参数s 指向欲分割的字符串,参数delim 则为分割字符串,当strtok()在参数s 的字符串中发现到参数delim 的分... 阅读全文
posted @ 2015-08-26 10:45 hbg-rohens 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 此结构体中定义了各个回调函数,在函数init_ksm(E:\code\net-snmp-5.4.2.1\snmplib)中进行了初始化。void init_ksm(void){ struct snmp_secmod_def *def;//申请内存 def = SNMP_MALLOC_STRUCT(s... 阅读全文
posted @ 2015-08-26 10:03 hbg-rohens 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 函数 sprint_realloc_by_type (E:\code\net-snmp-5.4.2.1\snmplib\mib.c)的主要作用是:解析传入的mib中的节点,根据mib节点类型,将其转换为可以识别的数字存入buffer中。intsprint_realloc_by_type(u_char... 阅读全文
posted @ 2015-08-21 14:46 hbg-rohens 阅读(358) 评论(0) 推荐(0) 编辑
摘要: ieee80211rx.c(E:\code\linux\net\ieee80211)所有接收到的帧都送到这个函数中去int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,struct ieee80211_rx_stat... 阅读全文
posted @ 2015-08-19 17:22 hbg-rohens 阅读(1311) 评论(0) 推荐(0) 编辑
摘要: strrchr() 函数查找字符在指定字符串中从正面开始的最后一次出现的位置,如果成功,则返回从该位置到字符串结尾的所有字符,如果失败,则返回 false。与之相对应的是strchr()函数,它查找字符串中首次出现指定字符的位置。函数原型:char *strrchr(const char *st... 阅读全文
posted @ 2015-08-18 09:34 hbg-rohens 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 在源文件 tcpdump.c中:结构体数组“static struct printer printers[]”定义了tcpdump所跟参数及其对一个的处理函数。struct printer { if_printer f; //处理函数 int type; //类型};然后通过函数“lookup_p... 阅读全文
posted @ 2015-08-17 17:19 hbg-rohens 阅读(1277) 评论(0) 推荐(0) 编辑