aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2021-03-04 21:25:11 +0100
committerHarald Welte <laforge@osmocom.org>2021-03-05 17:06:38 +0100
commita0fb37627f66bea61d4f236f2326a3a71c70580e (patch)
tree4c2aee9fcebb614cfa923b01ce44a657c718764e
parent7d0daac1ce16c4f9e1d77496cbcd729dece119c7 (diff)
TODO-RELEASE: Request increasing _LAST_OSMOVTY_NODE next release
We've used up all but one "library reserved" VTY nodes at this point, and we should definitely add some more reserved nodes in the next libosmovty ABI version / release. Change-Id: Idfe1e7d97f3f29fc219e80dcb6ce6bb768733adf
-rw-r--r--TODO-RELEASE1
-rw-r--r--include/osmocom/vty/command.h7
2 files changed, 8 insertions, 0 deletions
diff --git a/TODO-RELEASE b/TODO-RELEASE
index 8ccfa491..bc157bd2 100644
--- a/TODO-RELEASE
+++ b/TODO-RELEASE
@@ -7,3 +7,4 @@
# If any interfaces have been added since the last public release: c:r:a + 1.
# If any interfaces have been removed or changed since the last public release: c:r:0.
#library what description / commit summary line
+libosmovty _LAST_OSMOVTY_NODE Raise _LAST_OSMOVTY_NODE by introducing some RESERVED*_NODE
diff --git a/include/osmocom/vty/command.h b/include/osmocom/vty/command.h
index bc8f2e17..228dc5b8 100644
--- a/include/osmocom/vty/command.h
+++ b/include/osmocom/vty/command.h
@@ -106,7 +106,14 @@ enum node_type {
* When adding new nodes to the libosmocore project, these nodes can be
* used to avoid ABI changes for unrelated projects.
*/
+ RESERVED1_NODE, /*!< Reserved for later extensions */
+ RESERVED2_NODE, /*!< Reserved for later extensions */
RESERVED3_NODE, /*!< Reserved for later extensions */
+ RESERVED4_NODE, /*!< Reserved for later extensions */
+ RESERVED5_NODE, /*!< Reserved for later extensions */
+ RESERVED6_NODE, /*!< Reserved for later extensions */
+ RESERVED7_NODE, /*!< Reserved for later extensions */
+ RESERVED8_NODE, /*!< Reserved for later extensions */
_LAST_OSMOVTY_NODE
};