aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-11-07 21:34:31 +0100
committerHarald Welte <laforge@gnumonks.org>2016-11-07 21:34:31 +0100
commit450710501b092986024c1348697477fdcfbf80ce (patch)
treed01b78f7a52bdc09a4ea3113d763129707225f23 /openbsc/include/openbsc
parent1af212ab902f384462101e37a1b11012e04519ed (diff)
gb_proxy: differentiate between SGSN-facing and BSS-facing NS Instance
We start to differentiate between the two different NS Instances inside struct gbproxy_config. However, both elements are still initialized to the same (single) NS instance. Change-Id: I08c28bbc4cdf6ecfaa1ad62e547b45b58c967abb
Diffstat (limited to 'openbsc/include/openbsc')
-rw-r--r--openbsc/include/openbsc/gb_proxy.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsc/include/openbsc/gb_proxy.h b/openbsc/include/openbsc/gb_proxy.h
index c396d2bd1..2cdb942b2 100644
--- a/openbsc/include/openbsc/gb_proxy.h
+++ b/openbsc/include/openbsc/gb_proxy.h
@@ -92,7 +92,8 @@ struct gbproxy_config {
uint16_t nsip_sgsn_nsei;
/* misc */
- struct gprs_ns_inst *nsi;
+ struct gprs_ns_inst *sgsn_nsi;
+ struct gprs_ns_inst *bss_nsi;
/* Linked list of all Gb peers (except SGSN) */
struct llist_head bts_peers;