From 13351138e2081c5d02de11eef1050b17ffa199a1 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Mon, 17 Oct 2016 22:13:36 +0200 Subject: e1_inp: Use HDLC mode for signalling, not SIGN The SIGN mode implies that LAPD instances are bound to the timeslots, which is of course not what we want in a pure capturing/recording scenario. Instead, use the new E1INP_TS_TYPE_HDLC mode, which allows us to capture any HDLC framed messages on E1/T1 timeslots, whether LAPD or e.g. MTP. --- src/e1_recorder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/e1_recorder.c') diff --git a/src/e1_recorder.c b/src/e1_recorder.c index 868d95d..703a67e 100644 --- a/src/e1_recorder.c +++ b/src/e1_recorder.c @@ -16,7 +16,7 @@ static enum osmo_e1cap_capture_mode ts2cap_mode(struct e1inp_ts *ts) switch (ts->type) { case E1INP_TS_TYPE_RAW: return OSMO_E1CAP_MODE_RAW; - case E1INP_TS_TYPE_SIGN: + case E1INP_TS_TYPE_HDLC: return OSMO_E1CAP_MODE_HDLC; case E1INP_TS_TYPE_TRAU: return OSMO_E1CAP_MODE_TRAU; -- cgit v1.2.3