aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Chemeris <Alexander.Chemeris@gmail.com>2020-05-09 17:43:46 +0300
committeripse <Alexander.Chemeris@gmail.com>2020-05-09 18:02:13 +0000
commiteeda0e9442f3ccf3833d856698744869231ea4b6 (patch)
tree380d227b9a91a7d8ef21fbf829cfcc9bac40c670
parentf1c1e7f3451ca0cd0e8e41cc4a5a02513cf1f177 (diff)
a_reset: Rename SIGTRAN connection to BSSMAP MSC assocation in log messages
Explanation from Harald: There are plenty of things that can happen above the bare SCTP/M3UA connection which can happen, such as SCCP or MTP level routing problems. The fact that a MSC responds to a BSSMAP reset tells us that all of the underlying SS7 transport network is operational and the MSC responds to us. Go draw an IP analogy: Saying "SIGTAN connection up" here is like saying "Ethernet link up" when you get an ICMP response. Change-Id: If9d37c94f2f2b6cffef97f445774766993f538db
-rw-r--r--src/osmo-bsc/a_reset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osmo-bsc/a_reset.c b/src/osmo-bsc/a_reset.c
index 63273e9f2..f990e630f 100644
--- a/src/osmo-bsc/a_reset.c
+++ b/src/osmo-bsc/a_reset.c
@@ -82,7 +82,7 @@ static void fsm_disc_onenter_cb(struct osmo_fsm_inst *fi, uint32_t prev_state)
struct reset_ctx *reset_ctx = (struct reset_ctx *)fi->priv;
struct bsc_msc_data *msc = reset_ctx->priv;
- LOGPFSML(fi, LOGL_NOTICE, "SIGTRAN connection down, reconnecting...\n");
+ LOGPFSML(fi, LOGL_NOTICE, "BSSMAP MSC assocation is down, reconnecting...\n");
if (prev_state != ST_DISC)
osmo_stat_item_dec(msc->msc_statg->items[MSC_STAT_MSC_LINKS_ACTIVE], 1);
}
@@ -112,7 +112,7 @@ static void fsm_conn_onenter_cb(struct osmo_fsm_inst *fi, uint32_t prev_state)
struct reset_ctx *reset_ctx = (struct reset_ctx *)fi->priv;
struct bsc_msc_data *msc = reset_ctx->priv;
- LOGPFSML(fi, LOGL_NOTICE, "SIGTRAN connection succeeded.\n");
+ LOGPFSML(fi, LOGL_NOTICE, "BSSMAP MSC assocation is up.\n");
if (prev_state != ST_CONN)
osmo_stat_item_inc(msc->msc_statg->items[MSC_STAT_MSC_LINKS_ACTIVE], 1);
}