aboutsummaryrefslogtreecommitdiffstats
path: root/src/hlr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hlr.h')
-rw-r--r--src/hlr.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/hlr.h b/src/hlr.h
index 368a052..d9bdc87 100644
--- a/src/hlr.h
+++ b/src/hlr.h
@@ -23,6 +23,9 @@
#pragma once
#include <stdbool.h>
+#include <osmocom/core/linuxlist.h>
+
+struct hlr_usse;
struct hlr {
/* GSUP server pointer */
@@ -37,6 +40,10 @@ struct hlr {
/* Local bind addr */
char *gsup_bind_addr;
+
+ /* SS/USSD processing entities */
+ struct llist_head usse_list;
+ struct hlr_usse *usse_default;
};
struct hlr_subscriber;