aboutsummaryrefslogtreecommitdiffstats
path: root/tests/osmo-pcap-test
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@gnumonks.org>2012-08-04 18:39:45 +0200
committerPablo Neira Ayuso <pablo@gnumonks.org>2012-08-04 18:39:45 +0200
commitfdc65389864dfd567abaa67797f06b70905f5b19 (patch)
tree8e46f8771b1f400e11777dadb70e36894d1c1a5d /tests/osmo-pcap-test
parentffd20f3f1c56c6d47ec196c09069fb6b00ca081a (diff)
fix wrong delta between two RTP messages
it should 20 ms, not 160 ms. Thanks for Holger for spotting this.
Diffstat (limited to 'tests/osmo-pcap-test')
-rw-r--r--tests/osmo-pcap-test/osmux_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/osmo-pcap-test/osmux_test.c b/tests/osmo-pcap-test/osmux_test.c
index c089ddf..5ed3c86 100644
--- a/tests/osmo-pcap-test/osmux_test.c
+++ b/tests/osmo-pcap-test/osmux_test.c
@@ -55,7 +55,7 @@ static void deliver(struct msgb *batch_msg)
struct msgb *msg;
int i = 0;
struct timeval tv = { .tv_sec = 0, .tv_usec = 0 };
- struct timeval delta = { .tv_sec = 0, .tv_usec = 160000 };
+ struct timeval delta = { .tv_sec = 0, .tv_usec = 20000 };
timerclear(&tv);