摘要:
开始不知道怎么弄,后来看看应该是对select()函数的最后一个参数进行设置才对,改成可以命令行中输入 -w time_out的情况。不知道对不对哦。源码在这里:https://github.com/lxlenovostar/m_ping 阅读全文
摘要:
今天实现了控制发包频率,这个很简单,就是修改了源码中alarm()的时间,可以从命令行中读取相应的时间。代码在此:https://github.com/lxlenovostar/m_ping 阅读全文
摘要:
#include <stdlib.h>#include <stdio.h>intmain( int argc, char** argv ){ int i = 0; for ( ; i < argc; i++ ) { printf( "argv[%d] is %s\n", i, argv[i] ); } int arg_c = argc; char** arg_v = argv; arg_c--, arg_v++; while (arg_c > 0 && ... 阅读全文
摘要:
呵呵,接着完善 https://github.com/lxlenovostar/py_ping 阅读全文