diff options
| author | Olivier Dugeon <olivier.dugeon@orange.com> | 2023-02-15 09:42:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-15 09:42:03 +0100 |
| commit | e2b958ecbcd855dbaab6ba2e18550626befd3136 (patch) | |
| tree | 6b2ddd9ed915e0a732c0fc0a4d85e1b9bc232f9d /lib/command.h | |
| parent | 423c8035807d78ad9044068a9f45505d0208e981 (diff) | |
| parent | 66a45dae56e0e70a49168f6750b8342e1edbc5fe (diff) | |
Merge pull request #12494 from louis-6wind/ext_admin_group
lib,zebra,isisd: add support for extended admin group RFC7308
Diffstat (limited to 'lib/command.h')
| -rw-r--r-- | lib/command.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/command.h b/lib/command.h index 8f5d96053c..5aaa6d6cd8 100644 --- a/lib/command.h +++ b/lib/command.h @@ -90,6 +90,7 @@ struct host { }; /* List of CLI nodes. Please remember to update the name array in command.c. */ +/* clang-format off */ enum node_type { AUTH_NODE, /* Authentication mode of vty interface. */ VIEW_NODE, /* View node. Default mode of vty interface. */ @@ -106,6 +107,7 @@ enum node_type { EXTLOG_NODE, /* RFC5424 & co. extended syslog */ KEYCHAIN_NODE, /* Key-chain node. */ KEYCHAIN_KEY_NODE, /* Key-chain key node. */ + AFFMAP_NODE, /* Affinity map node. */ IP_NODE, /* Static ip route node. */ VRF_NODE, /* VRF mode node. */ INTERFACE_NODE, /* Interface mode node. */ @@ -186,6 +188,7 @@ enum node_type { BMP_NODE, /* BMP config under router bgp */ NODE_TYPE_MAX, /* maximum */ }; +/* clang-format on */ extern vector cmdvec; extern const struct message tokennames[]; |
