2009-07-11 17:05:54 +03:00
|
|
|
--- a/netem/maketable.c
|
|
|
|
+++ b/netem/maketable.c
|
2007-04-08 23:59:28 +03:00
|
|
|
@@ -10,7 +10,9 @@
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <math.h>
|
2008-08-09 00:49:17 +03:00
|
|
|
+#if !defined(__APPLE__) && !defined(__FreeBSD__)
|
2007-04-08 23:59:28 +03:00
|
|
|
#include <malloc.h>
|
|
|
|
+#endif
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2009-07-11 17:05:54 +03:00
|
|
|
--- a/netem/normal.c
|
|
|
|
+++ b/netem/normal.c
|
2007-04-08 23:59:28 +03:00
|
|
|
@@ -8,8 +8,12 @@
|
|
|
|
#include <string.h>
|
|
|
|
#include <limits.h>
|
|
|
|
|
2008-08-09 00:49:17 +03:00
|
|
|
+#if !defined(__APPLE__) && !defined(__FreeBSD__)
|
2007-04-08 23:59:28 +03:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/pkt_sched.h>
|
|
|
|
+#else
|
|
|
|
+#define NETEM_DIST_SCALE 8192
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
#define TABLESIZE 16384
|
|
|
|
#define TABLEFACTOR NETEM_DIST_SCALE
|
2009-07-11 17:05:54 +03:00
|
|
|
--- a/netem/pareto.c
|
|
|
|
+++ b/netem/pareto.c
|
2007-04-08 23:59:28 +03:00
|
|
|
@@ -7,8 +7,12 @@
|
|
|
|
#include <math.h>
|
|
|
|
#include <limits.h>
|
|
|
|
|
2008-08-09 00:49:17 +03:00
|
|
|
+#if !defined(__APPLE__) && !defined(__FreeBSD__)
|
2007-04-08 23:59:28 +03:00
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/pkt_sched.h>
|
|
|
|
+#else
|
|
|
|
+#define NETEM_DIST_SCALE 8192
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
static const double a=3.0;
|
|
|
|
#define TABLESIZE 16384
|
2009-07-11 17:05:54 +03:00
|
|
|
--- a/netem/paretonormal.c
|
|
|
|
+++ b/netem/paretonormal.c
|
2007-04-08 23:59:28 +03:00
|
|
|
@@ -15,10 +15,13 @@
|
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <limits.h>
|
2008-08-09 00:49:17 +03:00
|
|
|
+#if !defined(__APPLE__) && !defined(__FreeBSD__)
|
2007-04-08 23:59:28 +03:00
|
|
|
#include <malloc.h>
|
|
|
|
-
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/pkt_sched.h>
|
|
|
|
+#else
|
|
|
|
+#define NETEM_DIST_SCALE 8192
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
#define TABLESIZE 16384
|
|
|
|
#define TABLEFACTOR NETEM_DIST_SCALE
|