diff options
| author | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2020-05-15 15:24:59 -0300 |
|---|---|---|
| committer | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2020-05-20 10:39:34 -0300 |
| commit | d40d6c2274b7d05b4facd70228aaa8a1866d7efa (patch) | |
| tree | f67e2939849d2b4a6801f7fdd4d9cd3a359e1be7 /lib/command.c | |
| parent | abf1ba08e325ed550953e8ea4ee6cb8c8a1c01ba (diff) | |
bfdd,lib,vtysh: new command node for BFD profiles
Add the necessary code to implement the BFD profile command node.
Signed-off-by: Rafael Zalamena <rzalamena@opensourcerouting.org>
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 d8a2270bc5..c9715965aa 100644 --- a/lib/command.c +++ b/lib/command.c @@ -836,6 +836,9 @@ enum node_type node_parent(enum node_type node) case BFD_PEER_NODE: ret = BFD_NODE; break; + case BFD_PROFILE_NODE: + ret = BFD_NODE; + break; default: ret = CONFIG_NODE; break; |
