From cca4963c581f26353b6fb1187446df70b399cf29 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 16 Jun 2012 17:45:59 +0800 Subject: libgb: Remove dependency to openbsc/debug.h --- openbsc/src/libgb/libosmo-gb.map | 56 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 openbsc/src/libgb/libosmo-gb.map (limited to 'openbsc/src/libgb/libosmo-gb.map') diff --git a/openbsc/src/libgb/libosmo-gb.map b/openbsc/src/libgb/libosmo-gb.map new file mode 100644 index 00000000..ab3c4eaf --- /dev/null +++ b/openbsc/src/libgb/libosmo-gb.map @@ -0,0 +1,56 @@ +LIBOSMOGB_1.0 { +global: +bssgp_cause_str; +bssgp_create_cell_id; +bssgp_msgb_alloc; +bssgp_msgb_tlli_put; +bssgp_parse_cell_id; +bssgp_tx_bvc_block; +bssgp_tx_bvc_reset; +bssgp_tx_bvc_unblock; +bssgp_tx_flush_ll_ack; +bssgp_tx_llc_discarded; +bssgp_tx_ra_capa_upd; +bssgp_tx_radio_status_imsi; +bssgp_tx_radio_status_tlli; +bssgp_tx_radio_status_tmsi; +bssgp_tx_resume; +bssgp_tx_resume_ack; +bssgp_tx_resume_nack; +bssgp_tx_simple_bvci; +bssgp_tx_status; +bssgp_tx_suspend; +bssgp_tx_suspend_ack; +bssgp_tx_suspend_nack; +bssgp_tx_ul_ud; + +gprs_bssgp_rcvmsg +gprs_bssgp_rx_paging +gprs_bssgp_set_log_ss +gprs_bssgp_tx_dl_ud +gprs_bssgp_tx_paging +gprs_bssgp_vty_init + +gprs_ns_cause_str; +gprs_ns_destroy; +gprs_ns_frgre_listen; +gprs_ns_frgre_sendmsg; +gprs_ns_instantiate; +gprs_ns_nsip_listen; +gprs_ns_rcvmsg; +gprs_ns_sendmsg; +gprs_ns_set_log_ss; +gprs_ns_tx_alive; +gprs_ns_tx_alive_ack; +gprs_ns_tx_block; +gprs_ns_tx_reset; +gprs_ns_tx_status; +gprs_ns_tx_unblock; +gprs_ns_vty_init; + +gprs_nsvc_reset; + +nsip_connect; + +local: *; +}; -- cgit v1.2.3 From f543036719ccbb2431563d6af968502f9097db98 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 17 Jun 2012 12:25:53 +0800 Subject: libgb: prefix all NS related functions with gprs_ --- openbsc/src/libgb/libosmo-gb.map | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'openbsc/src/libgb/libosmo-gb.map') diff --git a/openbsc/src/libgb/libosmo-gb.map b/openbsc/src/libgb/libosmo-gb.map index ab3c4eaf..60f85b26 100644 --- a/openbsc/src/libgb/libosmo-gb.map +++ b/openbsc/src/libgb/libosmo-gb.map @@ -37,6 +37,7 @@ gprs_ns_frgre_listen; gprs_ns_frgre_sendmsg; gprs_ns_instantiate; gprs_ns_nsip_listen; +gprs_ns_nsip_connect; gprs_ns_rcvmsg; gprs_ns_sendmsg; gprs_ns_set_log_ss; @@ -48,9 +49,12 @@ gprs_ns_tx_status; gprs_ns_tx_unblock; gprs_ns_vty_init; +gprs_nsvc_create; +gprs_nsvc_delete; gprs_nsvc_reset; +gprs_nsvc_by_nsvci; +gprs_nsvc_by_nsei; -nsip_connect; local: *; }; -- cgit v1.2.3 From de4599cc350747609f1b66d84885b34cf76ae253 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 17 Jun 2012 13:04:02 +0800 Subject: 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. --- openbsc/src/libgb/libosmo-gb.map | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'openbsc/src/libgb/libosmo-gb.map') diff --git a/openbsc/src/libgb/libosmo-gb.map b/openbsc/src/libgb/libosmo-gb.map index 60f85b26..83a83026 100644 --- a/openbsc/src/libgb/libosmo-gb.map +++ b/openbsc/src/libgb/libosmo-gb.map @@ -23,13 +23,12 @@ bssgp_tx_suspend; bssgp_tx_suspend_ack; bssgp_tx_suspend_nack; bssgp_tx_ul_ud; - -gprs_bssgp_rcvmsg -gprs_bssgp_rx_paging -gprs_bssgp_set_log_ss -gprs_bssgp_tx_dl_ud -gprs_bssgp_tx_paging -gprs_bssgp_vty_init +bssgp_rcvmsg +bssgp_rx_paging +bssgp_set_log_ss +bssgp_tx_dl_ud +bssgp_tx_paging +bssgp_vty_init gprs_ns_cause_str; gprs_ns_destroy; -- cgit v1.2.3