aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-05-30 15:00:23 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-11-12 15:50:36 +0100
commitf1d1e7147a32d63b748507a9fc40c71d6a030312 (patch)
treedb25afdc8d069832dbb2e6434b4467773cc30417 /openbsc/include
parent72f4da98ce606ffb5cf8c6e6a716fa675d5b8c48 (diff)
gsm_subscriber_connection: mark BSC specific items
The struct shall be split in two later. Change-Id: Ib9666225fb9bfec2cf1e364343560571869fe6a7
Diffstat (limited to 'openbsc/include')
-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 0349ef885..1cd49ca23 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 */
};