aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2020-05-05 20:45:03 +0200
committerSylvain Munaut <tnt@246tNt.com>2020-05-05 21:15:53 +0200
commit7ab23b75afe9d095f30776c6778451d6fc107e79 (patch)
treef91c7fe94c93cfed28db537f17fade92b1b2ab46
parenteebb1ad0a08e6eb74ebdb6ed8e58f7514dd4561c (diff)
om2k: Acknowledge the unknown MCTR messages we get from time to time
This is probably a fault report of some kind, but didn't get any confirmation or naming from anywhere for it yet. Signed-off-by: Sylvain Munaut <tnt@246tNt.com> Change-Id: I8333093d09f27f61094c7f5854573aa16e4bf28c
-rw-r--r--src/osmo-bsc/abis_om2000.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/osmo-bsc/abis_om2000.c b/src/osmo-bsc/abis_om2000.c
index ee5c8d046..c32a5fa9a 100644
--- a/src/osmo-bsc/abis_om2000.c
+++ b/src/osmo-bsc/abis_om2000.c
@@ -2740,6 +2740,9 @@ int abis_om2k_rcvmsg(struct msgb *msg)
case OM2K_MSGT_CAPA_RES:
rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_CAPA_RES_ACK);
break;
+ case 0x0136: /* Unknown ... something for MCTR */
+ rc = abis_om2k_tx_simple(bts, &o2h->mo, 0x0134);
+ break;
/* ERrors */
case OM2K_MSGT_START_REQ_REJ:
case OM2K_MSGT_CONNECT_REJ: