aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc
diff options
context:
space:
mode:
Diffstat (limited to 'openbsc/include/openbsc')
-rw-r--r--openbsc/include/openbsc/gsm_data.h8
-rw-r--r--openbsc/include/openbsc/gsm_sup.h4
-rw-r--r--openbsc/include/openbsc/gsm_ussd_map.h4
3 files changed, 9 insertions, 7 deletions
diff --git a/openbsc/include/openbsc/gsm_data.h b/openbsc/include/openbsc/gsm_data.h
index de2cd34d1..7418d727c 100644
--- a/openbsc/include/openbsc/gsm_data.h
+++ b/openbsc/include/openbsc/gsm_data.h
@@ -15,7 +15,7 @@
#include <openbsc/rest_octets.h>
#include <openbsc/common_cs.h>
-#include <openbsc/gprs_gsup_client.h>
+#include <openbsc/gsup_client.h>
/** annotations for msgb ownership */
#define __uses
@@ -324,9 +324,9 @@ struct gsm_network {
struct llist_head upqueue;
struct llist_head trans_list;
struct bsc_api *bsc_api;
- struct gprs_gsup_client *hlr_sup_client;
- struct gprs_gsup_client *ussd_sup_client;
- struct gprs_gsup_client *sms_client;
+ struct gsup_client *hlr_sup_client;
+ struct gsup_client *ussd_sup_client;
+ struct gsup_client *sms_client;
unsigned int num_bts;
struct llist_head bts_list;
diff --git a/openbsc/include/openbsc/gsm_sup.h b/openbsc/include/openbsc/gsm_sup.h
index 52b132f70..f74bb9846 100644
--- a/openbsc/include/openbsc/gsm_sup.h
+++ b/openbsc/include/openbsc/gsm_sup.h
@@ -12,9 +12,11 @@
## args)
/* Callback for both HLR/auth and USSD SUP sockets */
-int sup_read_cb(struct gprs_gsup_client *sup_client, struct msgb *msg);
+int sup_read_cb(struct gsup_client *sup_client, struct msgb *msg);
+/*
int subscr_query_auth_info(struct gsm_subscriber *subscr);
+*/
int subscr_location_update(struct gsm_subscriber *subscr);
int subscr_purge_ms(struct gsm_subscriber *subscr);
diff --git a/openbsc/include/openbsc/gsm_ussd_map.h b/openbsc/include/openbsc/gsm_ussd_map.h
index 72798b24f..0f09fd3d5 100644
--- a/openbsc/include/openbsc/gsm_ussd_map.h
+++ b/openbsc/include/openbsc/gsm_ussd_map.h
@@ -1,11 +1,11 @@
#ifndef _GSM_USSD_MAP_H
#define _GSM_USSD_MAP_H
-#include <openbsc/gprs_gsup_client.h>
+#include <openbsc/gsup_client.h>
#include <openbsc/gsm_subscriber.h>
#include <openbsc/gsm_ussd_map_proto.h>
-int ussd_map_read_cb(struct gprs_gsup_client *sup_client,
+int ussd_map_read_cb(struct gsup_client *sup_client,
struct msgb *msg);
int ussd_map_tx_message(struct gsm_network *net, struct ss_header *req,