diff options
author | Ondrej Filip <feela@network.cz> | 1999-04-27 12:56:52 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 1999-04-27 12:56:52 +0000 |
commit | 6376a961332552e2bc178d647f1e5cfa01a1ac32 (patch) | |
tree | adc2de5ce15a3ec6173aeffe0aba1961239a8910 /proto/ospf/ospf.h | |
parent | 93bde8dce23ae10476263a84cc40bbe186263fdc (diff) |
Hello timer implemented.
Diffstat (limited to 'proto/ospf/ospf.h')
-rw-r--r-- | proto/ospf/ospf.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/proto/ospf/ospf.h b/proto/ospf/ospf.h index ae4bba73..26d201a0 100644 --- a/proto/ospf/ospf.h +++ b/proto/ospf/ospf.h @@ -14,7 +14,7 @@ #define AllSPFRouters ipa_from_u32(0xe0000005) /* 224.0.0.5 */ #define AllDRouters ipa_from_u32(0xe0000006) /* 224.0.0.6 */ #else -#error Multicast address not defined +#error Multicast address not defined in IPv6 #endif @@ -55,7 +55,8 @@ struct ospf_iface { #define OSPF_IS_DROTHER 3 /* I'm on BCAST or NBMA and I'm not DR */ #define OSPF_IS_BACKUP 4 /* I'm BDR */ #define OSPF_IS_DR 5 /* I'm DR */ - timer *wait_timer; /* One shot Wait timer - used after DOWN->UP */ + timer *timer; /* One shot Wait timer - used after DOWN->UP + * And timer for hello */ /* Default values for interface parameters */ #define COST_D 10 |