This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Neels Hofmeyr gerrit-no-reply at lists.osmocom.orgNeels Hofmeyr has submitted this change and it was merged.
Change subject: fix build on FreeBSD: eliminate implicitly declared functions
......................................................................
fix build on FreeBSD: eliminate implicitly declared functions
Change-Id: I4f7222f19e4d7129a5cef828a28dd12a40824a59
---
M src/gsup_server.c
M src/gsup_server.h
M src/hlr.c
3 files changed, 5 insertions(+), 0 deletions(-)
Approvals:
Neels Hofmeyr: Looks good to me, approved
Jenkins Builder: Verified
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 @@
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 @@
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;
--
To view, visit https://gerrit.osmocom.org/1405
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I4f7222f19e4d7129a5cef828a28dd12a40824a59
Gerrit-PatchSet: 1
Gerrit-Project: osmo-hlr
Gerrit-Branch: master
Gerrit-Owner: Neels Hofmeyr <nhofmeyr at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Neels Hofmeyr <nhofmeyr at sysmocom.de>