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
This commit is contained in:
Neels Hofmeyr 2016-05-30 15:00:23 +02:00 committed by Harald Welte
parent 50669bebdb
commit ce090f890b
1 changed files with 6 additions and 6 deletions

View File

@ -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 */
};