diff options
Diffstat (limited to 'trigcap.c')
-rw-r--r-- | trigcap.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -27,6 +27,19 @@ #include <signal.h> #include <errno.h> #include <getopt.h> + +#ifdef HAVE_PCAP_REMOTE +/* + * Force the WinPcap header files to define things required for remote + * capture. (Yes, this is q WinPcap bug; if your project has a public + * header file that checks or otherwise uses a #define that's defined + * by your project's configuration process, and don't ensure that + * it's always defined appropriately when that header file is included, + * before its first use, you have made a mistake.) + */ +#define HAVE_REMOTE +#endif + #include <pcap.h> static int dumping; |