summaryrefslogtreecommitdiffstats
path: root/netem/pareto.c
diff options
context:
space:
mode:
authorosdl.net!shemminger <osdl.net!shemminger>2005-02-09 22:05:41 +0000
committerosdl.net!shemminger <osdl.net!shemminger>2005-02-09 22:05:41 +0000
commita59e8edafc74860b22cbae1c7caf22b2d394b853 (patch)
treeab6d463a26bb060ccb4494319b7ac218f29fc410 /netem/pareto.c
parent70c3c93efe95caf4e3c3382841d094961f492191 (diff)
Rename: tc/pareto.c -> netem/pareto.c
(Logical change 1.141)
Diffstat (limited to 'netem/pareto.c')
-rw-r--r--netem/pareto.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/netem/pareto.c b/netem/pareto.c
index e69de29b..8aa647b6 100644
--- a/netem/pareto.c
+++ b/netem/pareto.c
@@ -0,0 +1,41 @@
+/*
+ * Pareto distribution table generator
+ * Taken from the uncopyrighted NISTnet code.
+ */
+#include <stdio.h>
+#include <stdlib.h>
+#include <math.h>
+#include <limits.h>
+
+#include <linux/types.h>
+#include <linux/pkt_sched.h>
+
+static const double a=3.0;
+#define TABLESIZE 16384
+#define TABLEFACTOR NETEM_DIST_SCALE
+
+int
+main(int argc, char **argv)
+{
+ int i, n;
+ double dvalue;
+
+ printf("# This is the distribution table for the pareto distribution.\n");
+
+ for (i = 65536, n = 0; i > 0; i -= 16) {
+ dvalue = (double)i/(double)65536;
+ dvalue = 1.0/pow(dvalue, 1.0/a);
+ dvalue -= 1.5;
+ dvalue *= (4.0/3.0)*(double)TABLEFACTOR;
+ if (dvalue > 32767)
+ dvalue = 32767;
+
+ printf(" %d", (int)rint(dvalue));
+ if (++n == 8) {
+ putchar('\n');
+ n = 0;
+ }
+ }
+
+ return 0;
+}