aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-05-14 00:07:43 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-05-14 00:09:05 +0800
commit637dce99ba3cd20e8cbdbfb6ad8e26af459a966b (patch)
tree0d55b5845cedb460af59257fb422875aa2441fad
parent641b07ab73abe6a3423e745a461dfaa96f66deb5 (diff)
ipaccess: Move the RSL delay down to 0 milliseconds.
Set the delay to zero milliseconds to send RSL messages as fast as possible.
-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 100c85bee..8c99157e0 100644
--- a/openbsc/src/input/ipaccess.c
+++ b/openbsc/src/input/ipaccess.c
@@ -265,7 +265,7 @@ static int ipaccess_rcvmsg(struct e1inp_line *line, struct msgb *msg,
trx->rsl_link = e1inp_sign_link_create(e1i_ts,
E1INP_SIGN_RSL, trx,
trx->rsl_tei, 0);
- trx->rsl_link->ts->sign.delay = 10;
+ trx->rsl_link->ts->sign.delay = 0;
/* get rid of our old temporary bfd */
memcpy(newbfd, bfd, sizeof(*newbfd));