aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2021-04-20 23:02:59 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2021-05-19 18:34:33 +0200
commitdd6f13636e24f432ab207d65a0ce073f590504aa (patch)
treeca5c4e8b521834de63d5563adbf596f65babf3fc
parent645aec823750a27ad7c672f02dfd52bc6bc4eecf (diff)
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
-rw-r--r--include/osmocom/gsm/protocol/gsm_08_58.h1
-rw-r--r--src/gsm/rsl.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/osmocom/gsm/protocol/gsm_08_58.h b/include/osmocom/gsm/protocol/gsm_08_58.h
index 79ddb685..efac54dc 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 2ab49c23..8d345437 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 },