aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2018-04-02 23:00:00 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2018-04-03 02:13:09 +0200
commit1ba0df26dc2ff6ff71ad467a25b5828e40c9b48e (patch)
tree07462942112e769cb6f9fc6c27037a8a3206c3bc /include/osmocom
parent4d3a66b3f8d39ecf1eefbe44d2bea28698ed8dd5 (diff)
cosmetic: rename subscr_conn_from to complete_layer3_type
'subscr_conn_from' could mean anything: from what, RAN type? BSS identifier? MM action? Clearly name it as the Complete Layer 3 kind it represents. Related: OS#3122 Change-Id: I6263a80e6db01c2ca48df6c58b05e2fd19347057
Diffstat (limited to 'include/osmocom')
-rw-r--r--include/osmocom/msc/osmo_msc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/osmocom/msc/osmo_msc.h b/include/osmocom/msc/osmo_msc.h
index 6fe529e3f..d838e89d4 100644
--- a/include/osmocom/msc/osmo_msc.h
+++ b/include/osmocom/msc/osmo_msc.h
@@ -36,17 +36,17 @@ enum subscr_conn_fsm_state {
SUBSCR_CONN_S_RELEASED,
};
-enum subscr_conn_from {
+enum complete_layer3_type {
SUBSCR_CONN_FROM_INVALID,
SUBSCR_CONN_FROM_LU,
SUBSCR_CONN_FROM_CM_SERVICE_REQ,
SUBSCR_CONN_FROM_PAGING_RESP,
};
-extern const struct value_string subscr_conn_from_names[];
-static inline const char *subscr_conn_from_name(enum subscr_conn_from val)
+extern const struct value_string complete_layer3_type_names[];
+static inline const char *complete_layer3_type_name(enum complete_layer3_type val)
{
- return get_value_string(subscr_conn_from_names, val);
+ return get_value_string(complete_layer3_type_names, val);
}
enum msc_compl_l3_rc {