aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-01-24 15:17:06 +0100
committerHarald Welte <laforge@gnumonks.org>2018-01-24 23:29:51 +0100
commita3ab1de7dc63c113721b776869849c3b636b39f3 (patch)
tree06db16b1758122caa824010e8d27ec2a60f25cde /include
parent4ab0a490ae227f881b8a0b43d803d56220f99160 (diff)
remove traces of bsc_subscriber
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/msc/gsm_data.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/osmocom/msc/gsm_data.h b/include/osmocom/msc/gsm_data.h
index 1b0bff9df..2b01a34c8 100644
--- a/include/osmocom/msc/gsm_data.h
+++ b/include/osmocom/msc/gsm_data.h
@@ -26,7 +26,6 @@
struct mncc_sock_state;
struct gsm_subscriber_group;
-struct bsc_subscr;
struct vlr_instance;
struct vlr_subscr;
struct ranap_ue_conn_ctx;
@@ -145,9 +144,6 @@ struct gsm_subscriber_connection {
* keep it open for an actual request (or until timeout). */
bool received_cm_service_request;
- /* libbsc subscriber information (if available) */
- struct bsc_subscr *bsub;
-
/* libmsc/libvlr subscriber information (if available) */
struct vlr_subscr *vsub;
@@ -445,14 +441,6 @@ struct gsm_network {
* OsmoMSC, this should be tied to the location area code (LAC). */
struct gsm_tz tz;
- /* List of all struct bsc_subscr used in libbsc. This llist_head is
- * allocated so that the llist_head pointer itself can serve as a
- * talloc context (useful to not have to pass the entire gsm_network
- * struct to the bsc_subscr_* API, and for bsc_susbscr unit tests to
- * not require gsm_data.h). In an MSC-without-BSC environment, this
- * pointer is NULL to indicate absence of a bsc_subscribers list. */
- struct llist_head *bsc_subscribers;
-
/* MSC: GSUP server address of the HLR */
const char *gsup_server_addr_str;
uint16_t gsup_server_port;
@@ -557,9 +545,6 @@ const char *bts_gprs_mode_name(enum bts_gprs_mode mode);
int gsm48_ra_id_by_bts(uint8_t *buf, struct gsm_bts *bts);
void gprs_ra_id_by_bts(struct gprs_ra_id *raid, struct gsm_bts *bts);
-struct gsm_subscriber_connection *bsc_subscr_con_allocate(struct gsm_lchan *lchan);
-void bsc_subscr_con_free(struct gsm_subscriber_connection *conn);
-
struct gsm_subscriber_connection *msc_subscr_con_allocate(struct gsm_network *network);
void msc_subscr_con_free(struct gsm_subscriber_connection *conn);