aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-ganc/ganc_data.h
diff options
context:
space:
mode:
Diffstat (limited to 'openbsc/src/osmo-ganc/ganc_data.h')
-rw-r--r--openbsc/src/osmo-ganc/ganc_data.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/openbsc/src/osmo-ganc/ganc_data.h b/openbsc/src/osmo-ganc/ganc_data.h
new file mode 100644
index 000000000..f67969c36
--- /dev/null
+++ b/openbsc/src/osmo-ganc/ganc_data.h
@@ -0,0 +1,12 @@
+#ifndef _GANC_DATA_H
+#define _GANC_DATA_H
+
+#include <osmocom/core/linuxlist.h>
+#include "conn.h"
+
+struct gan_peer {
+ struct llist_head list;
+ struct osmo_conn *conn;
+};
+
+#endif