bsc: Include the MCC/MNC in the location trap

It is of interest to know the MCC/MNC that is broadcasted at the
specific position.

Sponsored-by: On-Waves ehf
This commit is contained in:
Holger Hans Peter Freyther 2014-02-04 17:09:55 +01:00
parent 3adb772853
commit ecdf912ffb
1 changed files with 5 additions and 1 deletions

View File

@ -208,7 +208,11 @@ static void generate_location_state_trap(struct gsm_bts *bts, struct bsc_msc_con
admin = osmo_bsc_rf_get_adminstate_name(osmo_bsc_rf_get_adminstate_by_bts(bts));
policy = osmo_bsc_rf_get_policy_name(osmo_bsc_rf_get_policy_by_bts(bts));
cmd->reply = talloc_asprintf_append(cmd->reply, ",%s,%s,%s", oper, admin, policy);
cmd->reply = talloc_asprintf_append(cmd->reply,
",%s,%s,%s,%d,%d",
oper, admin, policy,
bts->network->country_code,
bts->network->network_code);
osmo_bsc_send_trap(cmd, msc_con);
talloc_free(cmd);