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/vty.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/vty.c')
-rw-r--r-- | lib/vty.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -811,6 +811,7 @@ static void vty_end_config(struct vty *vty) case LDP_L2VPN_NODE: case LDP_PSEUDOWIRE_NODE: case ISIS_NODE: + case OPENFABRIC_NODE: case KEYCHAIN_NODE: case KEYCHAIN_KEY_NODE: case VTY_NODE: @@ -1210,6 +1211,7 @@ static void vty_stop_input(struct vty *vty) case LDP_L2VPN_NODE: case LDP_PSEUDOWIRE_NODE: case ISIS_NODE: + case OPENFABRIC_NODE: case KEYCHAIN_NODE: case KEYCHAIN_KEY_NODE: case VTY_NODE: |