aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-12-11 01:21:49 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-12-11 01:22:45 +0100
commit6eed322063748325c36606e1f7181fd3c916651b (patch)
treeac1b2057f4602b97445f6639c0f5bb8e4b2b6ae8 /src
parent40d8b01deae185a3f043c242842e254ae67a42c2 (diff)
fix build on FreeBSD: eliminate implicitly declared functions
Diffstat (limited to 'src')
-rw-r--r--src/gsup_server.c1
-rw-r--r--src/gsup_server.h2
-rw-r--r--src/hlr.c2
3 files changed, 5 insertions, 0 deletions
diff --git a/src/gsup_server.c b/src/gsup_server.c
index 7d4c07d..f95d56c 100644
--- a/src/gsup_server.c
+++ b/src/gsup_server.c
@@ -26,6 +26,7 @@
#include <osmocom/abis/ipaccess.h>
#include "gsup_server.h"
+#include "gsup_router.h"
static void osmo_gsup_server_send(struct osmo_gsup_conn *conn,
int proto_ext, struct msgb *msg_tx)
diff --git a/src/gsup_server.h b/src/gsup_server.h
index bf1a570..484a0d7 100644
--- a/src/gsup_server.h
+++ b/src/gsup_server.h
@@ -32,6 +32,8 @@ struct osmo_gsup_conn {
int osmo_gsup_conn_send(struct osmo_gsup_conn *conn, struct msgb *msg);
+int osmo_gsup_conn_ccm_get(const struct osmo_gsup_conn *clnt, uint8_t **addr,
+ uint8_t tag);
struct osmo_gsup_server *osmo_gsup_server_create(void *ctx,
const char *ip_addr,
diff --git a/src/hlr.c b/src/hlr.c
index e87ebb6..86c5dcc 100644
--- a/src/hlr.c
+++ b/src/hlr.c
@@ -116,6 +116,8 @@ struct lu_operation {
uint8_t *peer;
};
+void lu_op_tx_insert_subscr_data(struct lu_operation *luop);
+
void lu_op_statechg(struct lu_operation *luop, enum lu_state new_state)
{
enum lu_state old_state = luop->state;