aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-01-14 15:08:39 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-03-03 16:19:09 +0100
commitda5b3fcd32f59182f5b3a224e275e4a8b3d288d3 (patch)
tree2debbf2fb047ae406a97556f2c4bcb8596dcf990 /openbsc/src
parent5291ee5c1690bbe87994e96c9bc2a448c80bb770 (diff)
wip (reminders to self, whitespace)
Diffstat (limited to 'openbsc/src')
-rw-r--r--openbsc/src/gprs/iu.c1
-rw-r--r--openbsc/src/libbsc/bsc_api.c4
-rw-r--r--openbsc/src/osmo-cscn/cscn_main.c2
3 files changed, 4 insertions, 3 deletions
diff --git a/openbsc/src/gprs/iu.c b/openbsc/src/gprs/iu.c
index 7c2f5d045..56614d10f 100644
--- a/openbsc/src/gprs/iu.c
+++ b/openbsc/src/gprs/iu.c
@@ -414,7 +414,6 @@ static int sccp_sap_up(struct osmo_prim_hdr *oph, void *link)
LOGP(DGPRS, LOGL_NOTICE, "Received invalid N-CONNECT.ind\n");
return 0;
}
- /* FIXME: allocate UE context */ /* FIXME: is this fixme fixed? */
ue = ue_conn_ctx_alloc(link, prim->u.connect.conn_id);
/* first ensure the local SUA/SCCP socket is ACTIVE */
resp = make_conn_resp(&prim->u.connect);
diff --git a/openbsc/src/libbsc/bsc_api.c b/openbsc/src/libbsc/bsc_api.c
index f3f7b777a..3225adc1d 100644
--- a/openbsc/src/libbsc/bsc_api.c
+++ b/openbsc/src/libbsc/bsc_api.c
@@ -39,7 +39,7 @@
#define GSM0808_T10_VALUE 6, 0
-static LLIST_HEAD(sub_connections);
+static LLIST_HEAD(sub_connections); /* FIXME move to libmsc */
static void rll_ind_cb(struct gsm_lchan *, uint8_t, void *, enum bsc_rllr_ind);
static void send_sapi_reject(struct gsm_subscriber_connection *conn, int link_id);
@@ -239,6 +239,8 @@ static int handle_new_assignment(struct gsm_subscriber_connection *conn, int cha
return 0;
}
+struct gsm_subscriber_connection *subscr_con_allocate_iu(struct gsm_lchan *lchan)
+/* for A-interface */
struct gsm_subscriber_connection *subscr_con_allocate(struct gsm_lchan *lchan)
{
struct gsm_subscriber_connection *conn;
diff --git a/openbsc/src/osmo-cscn/cscn_main.c b/openbsc/src/osmo-cscn/cscn_main.c
index cd67f28e0..dba5cfacb 100644
--- a/openbsc/src/osmo-cscn/cscn_main.c
+++ b/openbsc/src/osmo-cscn/cscn_main.c
@@ -247,7 +247,7 @@ void talloc_ctx_init(void);
extern int bsc_vty_go_parent(struct vty *vty);
static struct vty_app_info vty_info = {
- .name = "OpenCSCN",
+ .name = "OpenCSCN",
.version = PACKAGE_VERSION,
.go_parent_cb = bsc_vty_go_parent,
.is_config_node = bsc_vty_is_config_node,