aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-05-30 15:00:23 +0200
committerHarald Welte <laforge@gnumonks.org>2016-12-02 12:09:17 +0000
commitce090f890be5ef497347289984774bd2b0fd1a0e (patch)
tree6931ab40f2cd173759a04b30392786a94ce43aa0
parent50669bebdbc53826b63f8cf0542bb2787d3dd0cb (diff)
gsm_subscriber_connection: mark BSC specific items
This is intended to prepare for splitting gsm_subscriber_connection into BSC and MSC specific structs, to make the splitting patch more readable. Change-Id: Ib9666225fb9bfec2cf1e364343560571869fe6a7
-rw-r--r--openbsc/include/openbsc/gsm_data.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/openbsc/include/openbsc/gsm_data.h b/openbsc/include/openbsc/gsm_data.h
index 04d1126f5..ac573c49d 100644
--- a/openbsc/include/openbsc/gsm_data.h
+++ b/openbsc/include/openbsc/gsm_data.h
@@ -132,19 +132,19 @@ struct gsm_subscriber_connection {
int mncc_rtp_connect_pending;
/* bsc structures */
- struct osmo_bsc_sccp_con *sccp_con;
+ struct osmo_bsc_sccp_con *sccp_con; /* BSC */
/* back pointers */
struct gsm_network *network;
int in_release;
- struct gsm_lchan *lchan;
- struct gsm_lchan *ho_lchan;
- struct gsm_bts *bts;
+ struct gsm_lchan *lchan; /* BSC */
+ struct gsm_lchan *ho_lchan; /* BSC */
+ struct gsm_bts *bts; /* BSC */
/* for assignment handling */
- struct osmo_timer_list T10;
- struct gsm_lchan *secondary_lchan;
+ struct osmo_timer_list T10; /* BSC */
+ struct gsm_lchan *secondary_lchan; /* BSC */
};