aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2023-05-03 02:31:16 +0200
committerneels <nhofmeyr@sysmocom.de>2023-05-06 03:49:08 +0000
commite4b84738b5730e230144c132f1d446f32cf88581 (patch)
tree502a19ee4bb2f31490a53a0d7ae7e5b59f609152 /include
parent67d84d2131b3101de7021e0c04a0b5fdda9ee5c3 (diff)
vty: move struct vty_parent_node to private API
Diffstat (limited to 'include')
-rw-r--r--include/osmocom/vty/vty.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/include/osmocom/vty/vty.h b/include/osmocom/vty/vty.h
index 155501e9..3a2ec6f6 100644
--- a/include/osmocom/vty/vty.h
+++ b/include/osmocom/vty/vty.h
@@ -56,21 +56,6 @@ enum vty_type {
VTY_SHELL_SERV
};
-struct vty_parent_node {
- struct llist_head entry;
-
- /*! private data, specified by creator */
- void *priv;
- void *index;
-
- /*! Node status of this vty */
- int node;
-
- /*! When reading from a config file, these are the indenting characters expected for children of
- * this VTY node. */
- char *indent;
-};
-
/*! Internal representation of a single VTY */
struct vty {
/*! underlying file (if any) */