data. Vortex decouples packet capture, stream reassembly, and real time constraints from analysis. Vortex is used to provide TCP stream data to a separate analyzer program. Feature safe: yes
14 lines
334 B
C
14 lines
334 B
C
--- ./xpipes.c.orig 2013-04-18 09:50:44.000000000 -0400
|
|
+++ ./xpipes.c 2013-04-18 09:54:21.000000000 -0400
|
|
@@ -37,7 +37,11 @@
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
+#ifdef linux
|
|
#include <linux/limits.h>
|
|
+#elif defined(__FreeBSD__)
|
|
+#include <sys/param.h>
|
|
+#endif
|
|
#include <pthread.h>
|
|
#include <unistd.h>
|
|
|