From 4a96b7c7b9d9987afa7493f0b9b48ada8ae058ef Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Mon, 28 Sep 2020 12:42:27 +0700 Subject: vty/command: introduce new attribute CMD_ATTR_IMMEDIATE This attribute indicates that a VTY command applies immediately. Change-Id: Ia185dfd0c89214dc893af70736ff01dca3a7627e Related: SYS#4937 --- include/osmocom/vty/command.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/osmocom/vty/command.h b/include/osmocom/vty/command.h index 47d2e5f3..43ad3da8 100644 --- a/include/osmocom/vty/command.h +++ b/include/osmocom/vty/command.h @@ -137,6 +137,7 @@ struct cmd_node { enum { CMD_ATTR_DEPRECATED = (1 << 0), CMD_ATTR_HIDDEN = (1 << 1), + CMD_ATTR_IMMEDIATE = (1 << 2), }; /*! Structure of a command element */ -- cgit v1.2.3