diff options
author | Christian Franke <chris@opensourcerouting.org> | 2018-03-22 15:01:08 +0100 |
---|---|---|
committer | Christian Franke <chris@opensourcerouting.org> | 2018-09-05 11:38:12 +0200 |
commit | 7c0cbd0e8879ef85469cd2da606cdabdb374cf01 (patch) | |
tree | 8999de060c8affdb9cb2e476369d5238524fae7c /lib/command.c | |
parent | Merge pull request #2971 from qlyoung/misc-doc-updates (diff) | |
download | frr-7c0cbd0e8879ef85469cd2da606cdabdb374cf01.tar.xz frr-7c0cbd0e8879ef85469cd2da606cdabdb374cf01.zip |
fabricd: add new daemon as build of isisd
fabricd is built using the sources of isisd. To allow differentiation
in the code, -DFABRICD=1 is added to its preprocessor flags.
Signed-off-by: Christian Franke <chris@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 1df644210..dd259472b 100644 --- a/lib/command.c +++ b/lib/command.c @@ -146,6 +146,7 @@ const char *node_names[] = { */ "bfd", /* BFD_NODE */ "bfd peer", /* BFD_PEER_NODE */ + "openfabric", // OPENFABRIC_NODE }; /* clang-format on */ @@ -1435,6 +1436,7 @@ void cmd_exit(struct vty *vty) case LDP_NODE: case LDP_L2VPN_NODE: case ISIS_NODE: + case OPENFABRIC_NODE: case KEYCHAIN_NODE: case RMAP_NODE: case PBRMAP_NODE: @@ -1550,6 +1552,7 @@ DEFUN (config_end, case LDP_L2VPN_NODE: case LDP_PSEUDOWIRE_NODE: case ISIS_NODE: + case OPENFABRIC_NODE: case KEYCHAIN_NODE: case KEYCHAIN_KEY_NODE: case VTY_NODE: |