aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/libbsc/abis_om2000.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbsc/src/libbsc/abis_om2000.c')
-rw-r--r--openbsc/src/libbsc/abis_om2000.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/openbsc/src/libbsc/abis_om2000.c b/openbsc/src/libbsc/abis_om2000.c
index 716f17b45..d8350e5c1 100644
--- a/openbsc/src/libbsc/abis_om2000.c
+++ b/openbsc/src/libbsc/abis_om2000.c
@@ -999,6 +999,9 @@ int abis_om2k_tx_is_conf_req(struct gsm_bts *bts)
talloc_free(cg);
+ DEBUGP(DNM, "Tx MO=%s %s\n", om2k_mo_name(&om2k_mo_is),
+ get_value_string(om2k_msgcode_vals, OM2K_MSGT_IS_CONF_REQ));
+
return abis_om2k_sendmsg(bts, msg);
}
@@ -1016,6 +1019,9 @@ int abis_om2k_tx_con_conf_req(struct gsm_bts *bts, uint8_t *data,
msgb_tlv_put(msg, OM2K_DEI_CON_CONN_LIST, len, data);
+ DEBUGP(DNM, "Tx MO=%s %s\n", om2k_mo_name(&om2k_mo_con),
+ get_value_string(om2k_msgcode_vals, OM2K_MSGT_CON_CONF_REQ));
+
return abis_om2k_sendmsg(bts, msg);
}
@@ -1099,6 +1105,9 @@ int abis_om2k_tx_tf_conf_req(struct gsm_bts *bts)
msgb_tv_fixed_put(msg, OM2K_DEI_FS_OFFSET,
sizeof(fs_offset_undef), fs_offset_undef);
+ DEBUGP(DNM, "Tx MO=%s %s\n", om2k_mo_name(&om2k_mo_tf),
+ get_value_string(om2k_msgcode_vals, OM2K_MSGT_TF_CONF_REQ));
+
return abis_om2k_sendmsg(bts, msg);
}