diff options
author | Ondrej Filip <feela@network.cz> | 2000-05-04 03:23:03 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-05-04 03:23:03 +0200 |
commit | d345cda5a1cea03a09e5a37c999e88c5177c8a9e (patch) | |
tree | 2655c3d095e1ea1717807396a8d6df588f5a7905 /proto/ospf/ospf.h | |
parent | 9e48d717cf681dcc3cfaaee4358b5c6fa3aa409e (diff) | |
download | bird-d345cda5a1cea03a09e5a37c999e88c5177c8a9e.tar bird-d345cda5a1cea03a09e5a37c999e88c5177c8a9e.zip |
Bugfix in Network lsa originating
Bugfix in ntohlsab() and htonlsab()
For calculating of rt I use my own fib. I delete routes! ;-)
Diffstat (limited to 'proto/ospf/ospf.h')
-rw-r--r-- | proto/ospf/ospf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/proto/ospf/ospf.h b/proto/ospf/ospf.h index 22064b9..f2736c6 100644 --- a/proto/ospf/ospf.h +++ b/proto/ospf/ospf.h @@ -26,7 +26,7 @@ #include "nest/iface.h" #include "nest/route.h" #include "conf/conf.h" -#include <string.h> +#include "lib/string.h" #define OSPF_PROTO 89 #ifndef IPV6 @@ -334,6 +334,7 @@ struct ospf_area { u8 stub; u8 trcap; /* Transit capability? */ struct proto_ospf *po; + struct fib infib; /* FIB for intra-area routes */ }; struct proto_ospf { |