aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-08-18 02:15:56 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-08-18 03:21:22 +0200
commit926153b9af0659e8c214f40424e29cda0c821607 (patch)
tree39b9308232d96b3de9b32c8fb1f80914a4ed9d64 /include
parent4d8eb4cbd7e7ecc1ad04e3b38ab5121dca2580b1 (diff)
hnbgw vty: add empty hnbgw and hnbgw/iuh vty nodes
Add include/osmocom/iuh/ named after this project (osmo-iuh), and add vty.h to define VTY node enum values. Also add (to) Makefile.am and configure.ac to include in the build. An upcoming commit will add the actual first config item to the hnbgw/iuh node. Change-Id: I71545823d3bd81cb888c85df8e298a56c98bf131
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/Makefile.am2
-rw-r--r--include/osmocom/iuh/Makefile.am2
-rw-r--r--include/osmocom/iuh/vty.h9
3 files changed, 12 insertions, 1 deletions
diff --git a/include/osmocom/Makefile.am b/include/osmocom/Makefile.am
index f89b5dc..246cb34 100644
--- a/include/osmocom/Makefile.am
+++ b/include/osmocom/Makefile.am
@@ -1,2 +1,2 @@
-SUBDIRS = hnbap ranap rua
+SUBDIRS = hnbap ranap rua iuh
diff --git a/include/osmocom/iuh/Makefile.am b/include/osmocom/iuh/Makefile.am
new file mode 100644
index 0000000..e2f7126
--- /dev/null
+++ b/include/osmocom/iuh/Makefile.am
@@ -0,0 +1,2 @@
+noinst_HEADERS = \
+ vty.h
diff --git a/include/osmocom/iuh/vty.h b/include/osmocom/iuh/vty.h
new file mode 100644
index 0000000..905a949
--- /dev/null
+++ b/include/osmocom/iuh/vty.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include <osmocom/vty/vty.h>
+
+enum osmo_iuh_vty_node {
+ HNBGW_NODE = _LAST_OSMOVTY_NODE + 1,
+ IUH_NODE,
+};
+