aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-11-15 20:36:21 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-12-21 13:53:42 +0100
commitd49fc5ae24fc9d44d2b284392ab619cc7a69a876 (patch)
treeb28010f31296b48ca854dc1a7211ff7b1198bf42 /openbsc
parentd85642a1a7dc52a9618c56402ad85ee5f0739d0e (diff)
ts: Reduce the delay to 0 for OML and RSL
This is possible after not sending more than one OML command that requires an extra ACK. For the RSL line we do not need any speed limitation.
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/src/input/ipaccess.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/input/ipaccess.c b/openbsc/src/input/ipaccess.c
index 03eba8b4d..8a2f8276a 100644
--- a/openbsc/src/input/ipaccess.c
+++ b/openbsc/src/input/ipaccess.c
@@ -282,7 +282,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));
@@ -623,7 +623,7 @@ static int ipaccess_fd_cb(struct bsc_fd *bfd, unsigned int what)
struct e1inp_driver ipaccess_driver = {
.name = "ip.access",
.want_write = ts_want_write,
- .default_delay = 100000,
+ .default_delay = 0,
};
/* callback of the OML listening filedescriptor */