aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-03-24 08:27:37 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-03-24 08:33:22 +0100
commitf5284ae1cf8babc1567b33f469e20a66a73fcd9e (patch)
tree05abf09775c5ad21453c629b9c73d23f8774b2fa
parentff9d8b42e6f11bda1a9801f68448106278333058 (diff)
ipa: Reduce the throttling of the IPA msges
This code used to be a sleep, it was changed to be a timer by Andreas but this timer does not seem to have any use. When doing the sw load this timer is increasing the upload time dramatically, reduce it to make it work faster.
-rw-r--r--openbsc/src/input/ipaccess.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/input/ipaccess.c b/openbsc/src/input/ipaccess.c
index de5149c5a..91d267cb0 100644
--- a/openbsc/src/input/ipaccess.c
+++ b/openbsc/src/input/ipaccess.c
@@ -466,7 +466,7 @@ static int handle_ts1_write(struct bsc_fd *bfd)
/* set tx delay timer for next event */
e1i_ts->sign.tx_timer.cb = timeout_ts1_write;
e1i_ts->sign.tx_timer.data = e1i_ts;
- bsc_schedule_timer(&e1i_ts->sign.tx_timer, 0, 100000);
+ bsc_schedule_timer(&e1i_ts->sign.tx_timer, 0, 100);
return ret;
}