diff options
author | paul <paul> | 2005-08-22 22:39:56 +0000 |
---|---|---|
committer | paul <paul> | 2005-08-22 22:39:56 +0000 |
commit | e7d4bc833d2b0a349c982f609fcf4a36aa806367 (patch) | |
tree | dba216bbd93e67717ca1079fb97109179ef2e0c8 /lib/command.c | |
parent | 6b0f3519769ae8edf81f2bcf4d378bb8108b3007 (diff) | |
download | quagga-e7d4bc833d2b0a349c982f609fcf4a36aa806367.tar.bz2 quagga-e7d4bc833d2b0a349c982f609fcf4a36aa806367.tar.xz |
2005-08-22 Hugo Santos <hsantos@av.it.pt>
* command.h: (enum node_type) Add BGP_IPV6M_NODE
* command.c: (node_parent) Handle BGP_IPV6M_NODE node
(config_exit, config_end) ditto
* vty.c: (vty_end_config) Handle BGP_IPV6M_NODE node
Diffstat (limited to 'lib/command.c')
-rw-r--r-- | lib/command.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/command.c b/lib/command.c index 0ca8c167..a6338d5b 100644 --- a/lib/command.c +++ b/lib/command.c @@ -1966,6 +1966,7 @@ node_parent ( enum node_type node ) case BGP_IPV4_NODE: case BGP_IPV4M_NODE: case BGP_IPV6_NODE: + case BGP_IPV6M_NODE: ret = BGP_NODE; break; case KEYCHAIN_KEY_NODE: @@ -2391,6 +2392,7 @@ DEFUN (config_exit, case BGP_IPV4_NODE: case BGP_IPV4M_NODE: case BGP_IPV6_NODE: + case BGP_IPV6M_NODE: vty->node = BGP_NODE; break; case KEYCHAIN_KEY_NODE: @@ -2430,6 +2432,7 @@ DEFUN (config_end, case BGP_IPV4_NODE: case BGP_IPV4M_NODE: case BGP_IPV6_NODE: + case BGP_IPV6M_NODE: case RMAP_NODE: case OSPF_NODE: case OSPF6_NODE: |