From dd6f13636e24f432ab207d65a0ce073f590504aa Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Tue, 20 Apr 2021 23:02:59 +0200 Subject: [PATCH] add RSL_IE_OSMO_TRAINING_SEQUENCE This IE is explained in the Abis manual in osmo-bts commit Ie583bd5969fdb45f772af198033e58d7c4077306 http://git.osmocom.org/osmo-bts/commit/?id=823cd529649b667af20bfa4e383255a8ed5931f1 Change-Id: I573c26b1431ee789e42f6fa620947b003c384dc0 --- include/osmocom/gsm/protocol/gsm_08_58.h | 1 + src/gsm/rsl.c | 1 + 2 files changed, 2 insertions(+) diff --git a/include/osmocom/gsm/protocol/gsm_08_58.h b/include/osmocom/gsm/protocol/gsm_08_58.h index 79ddb6856..efac54dca 100644 --- a/include/osmocom/gsm/protocol/gsm_08_58.h +++ b/include/osmocom/gsm/protocol/gsm_08_58.h @@ -357,6 +357,7 @@ enum abis_rsl_ie { /* Osmocom specific */ RSL_IE_OSMO_REP_ACCH_CAP= 0x60, + RSL_IE_OSMO_TRAINING_SEQUENCE = 0x61, /* ip.access */ RSL_IE_IPAC_SRTP_CONFIG = 0xe0, diff --git a/src/gsm/rsl.c b/src/gsm/rsl.c index 2ab49c231..8d3454373 100644 --- a/src/gsm/rsl.c +++ b/src/gsm/rsl.c @@ -127,6 +127,7 @@ const struct tlv_definition rsl_att_tlvdef = { [RSL_IE_LLP_APDU] = { TLV_TYPE_TLV }, [RSL_IE_SIEMENS_MRPCI] = { TLV_TYPE_TV }, [RSL_IE_OSMO_REP_ACCH_CAP] = { TLV_TYPE_TLV }, + [RSL_IE_OSMO_TRAINING_SEQUENCE] = { TLV_TYPE_TLV }, [RSL_IE_IPAC_PROXY_UDP] = { TLV_TYPE_FIXED, 2 }, [RSL_IE_IPAC_BSCMPL_TOUT] = { TLV_TYPE_TV }, [RSL_IE_IPAC_REMOTE_IP] = { TLV_TYPE_FIXED, 4 },