⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ipgrab.h

📁 该程序类似于tcpdump软件
💻 H
字号:
/**************************************************************************** 
**
** File: ipgrab.h
**
** Author: Mike Borella
**
** Comments: Macros and stuff
**
*****************************************************************************/

typedef struct _ipg_stats
{
  u_int32_t pkts_rcvd;
} ipg_stats;

char *copy_argv(char **argv);

/*
 * This is a typecast to avoid stupid warning messages.  The PCAP library
 * assumes that a call to a function that parses data link layer packets
 * includes a const in the third argument.  Actually doing so is a pain
 * because it makes the higher layer protocols much harder to parse because
 * you can't assign a pointer to the packet data.  So this tricks PCAP
 * into thinking you're using the const when you really are not.
 * Bleah.
 */

typedef void (*pcap_func_t)(u_char *, const struct pcap_pkthdr *, 
			    const u_char *);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -