我将以下函数添加到嗅探代码(http://www.tcpdump.org/sniffex.c):
typedef struct pcap_stat mystat;
mystat *mystatp;
/* Put the interface in statstics mode */
if(pcap_stats(handle, mystatp) < 0)
{
fprintf(stderr,"\nError setting the mode.\n");
pcap_close(handle);
/* Free the device list */
return;
}
Sniffex 代码对我来说工作正常 - 但只要我添加此代码,我就会收到分段错误错误:(
谁能帮帮我?
万分感谢。