vty: Add a new callback to let code decide if it is a config node or not
diff --git a/include/osmocom/vty/vty.h b/include/osmocom/vty/vty.h
index e7399ba..71b6be0 100644
--- a/include/osmocom/vty/vty.h
+++ b/include/osmocom/vty/vty.h
@@ -133,6 +133,7 @@
 	const char *copyright;
 	void *tall_ctx;
 	enum node_type (*go_parent_cb)(struct vty *vty);
+	int (*is_config_node)(struct vty *vty, int node);
 };
 
 /* Prototypes. */