aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gprs/sgsn_main.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2012-06-17 13:04:02 +0800
committerHarald Welte <laforge@gnumonks.org>2012-06-17 13:05:48 +0800
commitce95b27b68bb44f56d166eb271e69c4f38b6e853 (patch)
tree12e3b77cfea049d8783d672f13a5fc2ecfdd8c18 /openbsc/src/gprs/sgsn_main.c
parent11461a64574314fbc4747fe6251ca000fdd56b75 (diff)
libgb: make sure all BSSGP functions have bssgp_ prefix
We change the minority of functions employing the gprs_bssgp_ prefix to match with the majority without gprs_ in front.
Diffstat (limited to 'openbsc/src/gprs/sgsn_main.c')
-rw-r--r--openbsc/src/gprs/sgsn_main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/src/gprs/sgsn_main.c b/openbsc/src/gprs/sgsn_main.c
index c3bc8d25d..d1df094ae 100644
--- a/openbsc/src/gprs/sgsn_main.c
+++ b/openbsc/src/gprs/sgsn_main.c
@@ -88,7 +88,7 @@ static int sgsn_ns_cb(enum gprs_ns_evt event, struct gprs_nsvc *nsvc,
switch (event) {
case GPRS_NS_EVT_UNIT_DATA:
/* hand the message into the BSSGP implementation */
- rc = gprs_bssgp_rcvmsg(msg);
+ rc = bssgp_rcvmsg(msg);
break;
default:
LOGP(DGPRS, LOGL_ERROR, "SGSN: Unknown event %u from NS\n", event);
@@ -320,7 +320,7 @@ int main(int argc, char **argv)
exit(1);
gprs_ns_set_log_ss(DNS);
- gprs_bssgp_set_log_ss(DBSSGP);
+ bssgp_set_log_ss(DBSSGP);
sgsn_nsi = gprs_ns_instantiate(&sgsn_ns_cb, tall_bsc_ctx);
if (!sgsn_nsi) {
@@ -332,7 +332,7 @@ int main(int argc, char **argv)
gprs_llc_init("/usr/local/lib/osmocom/crypt/");
gprs_ns_vty_init(bssgp_nsi);
- gprs_bssgp_vty_init();
+ bssgp_vty_init();
gprs_llc_vty_init();
gprs_sndcp_vty_init();
/* FIXME: register signal handler for SS_L_NS */