diff options
author | Andrew Cooks <acooks.at.bda@gmail.com> | 2024-05-15 08:42:43 +0200 |
---|---|---|
committer | Andrew Cooks <acooks.at.bda@gmail.com> | 2024-09-16 10:38:16 +0200 |
commit | 89e18bfad1cb0e01af904d539da1d4a6aeb2ae5b (patch) | |
tree | 4524eb21f53abda20b8cd74093dd57809e705c4d /ospf6d/ospf6_spf.c | |
parent | ospf6d: factor out generic TLV handling (diff) | |
download | frr-89e18bfad1cb0e01af904d539da1d4a6aeb2ae5b.tar.xz frr-89e18bfad1cb0e01af904d539da1d4a6aeb2ae5b.zip |
ospf6d: move lsa structs to ospf6_lsa.h
It will be cleaner to have the LSAs in a single header and the future
TLVs in a single header.
Signed-off-by: Andrew Cooks <acooks.at.bda@gmail.com>
Diffstat (limited to 'ospf6d/ospf6_spf.c')
-rw-r--r-- | ospf6d/ospf6_spf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_spf.c b/ospf6d/ospf6_spf.c index 7879dae8d..5c6c1f0f2 100644 --- a/ospf6d/ospf6_spf.c +++ b/ospf6d/ospf6_spf.c @@ -16,11 +16,11 @@ #include "frrevent.h" #include "lib_errors.h" +#include "ospf6_proto.h" #include "ospf6_lsa.h" #include "ospf6_lsdb.h" #include "ospf6_route.h" #include "ospf6_area.h" -#include "ospf6_proto.h" #include "ospf6_abr.h" #include "ospf6_asbr.h" #include "ospf6_spf.h" |