osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-bsc-nat/+/27706 )
Change subject: bssap.h, subscr_conn.h: fix missing includes ......................................................................
bssap.h, subscr_conn.h: fix missing includes
Related: SYS#5560 Change-Id: Ieb048c0f299bca1b194979c26cbeadbc81dee05f --- M include/osmocom/bsc_nat/bssap.h M include/osmocom/bsc_nat/subscr_conn.h 2 files changed, 3 insertions(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved fixeria: Looks good to me, approved laforge: Looks good to me, approved
diff --git a/include/osmocom/bsc_nat/bssap.h b/include/osmocom/bsc_nat/bssap.h index f474909..7f45a2f 100644 --- a/include/osmocom/bsc_nat/bssap.h +++ b/include/osmocom/bsc_nat/bssap.h @@ -19,6 +19,7 @@
#pragma once
+#include <osmocom/core/msgb.h> #include <osmocom/bsc_nat/bsc_nat.h>
int bssap_handle_udt(struct bsc_nat_sccp_inst *sccp_inst, struct osmo_sccp_addr *addr, struct msgb *msgb, diff --git a/include/osmocom/bsc_nat/subscr_conn.h b/include/osmocom/bsc_nat/subscr_conn.h index 696e0c3..7de3f0f 100644 --- a/include/osmocom/bsc_nat/subscr_conn.h +++ b/include/osmocom/bsc_nat/subscr_conn.h @@ -19,6 +19,8 @@
#pragma once
+#include <osmocom/bsc_nat/bsc_nat.h> + /* connection for one subscriber */ struct subscr_conn { struct llist_head list;