diff options
author | Christian Franke <chris@opensourcerouting.org> | 2018-05-10 18:52:17 +0200 |
---|---|---|
committer | Christian Franke <chris@opensourcerouting.org> | 2018-09-05 11:38:13 +0200 |
commit | cbd8e49e3ead018b67f630752a37c44fae0697cc (patch) | |
tree | b7caf2ac4408054be617d344172ec45b4f7d98f2 /isisd/subdir.am | |
parent | fabricd: run a hop-by-hop spf (diff) | |
download | frr-cbd8e49e3ead018b67f630752a37c44fae0697cc.tar.xz frr-cbd8e49e3ead018b67f630752a37c44fae0697cc.zip |
isisd: move spf datastructures to a header, to share with fabricd
By moving the spf datastructures to a header, fabricd can access the
results of the spf run for flooding optimization or fabric locality
calculation.
While this was deemed a sensible choice in this case, when compared with
the option of adding a lot of OpenFabric specific code to isis_spf.c,
the datastructures should still not be accessed randomly all over the
code base. To make this more clear, the new header was called
isis_spf_private.h (Think of a friend class)
Signed-off-by: Christian Franke <chris@opensourcerouting.org>
Diffstat (limited to 'isisd/subdir.am')
-rw-r--r-- | isisd/subdir.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/isisd/subdir.am b/isisd/subdir.am index cd8bfdbdd..792b0df6c 100644 --- a/isisd/subdir.am +++ b/isisd/subdir.am @@ -37,6 +37,7 @@ noinst_HEADERS += \ isisd/isis_route.h \ isisd/isis_routemap.h \ isisd/isis_spf.h \ + isisd/isis_spf_private.h \ isisd/isis_te.h \ isisd/isis_tlvs.h \ isisd/isis_vty_common.h \ |