diff options
author | Ondrej Filip <feela@network.cz> | 2000-03-29 17:18:06 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-03-29 17:18:06 +0000 |
commit | 910e557b47f52bf38aa923a69249670d71befc02 (patch) | |
tree | eb7bb463fb7ae1cc8651ef5e7224086ff8c866b9 /proto/ospf/ospf.h | |
parent | 315648af8ed75c91e0dd82748a933963b9e0c4ec (diff) |
Many changes in dbdes sending & receiving. EXDONE caused.
Diffstat (limited to 'proto/ospf/ospf.h')
-rw-r--r-- | proto/ospf/ospf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/ospf/ospf.h b/proto/ospf/ospf.h index 65573559..06ca56dc 100644 --- a/proto/ospf/ospf.h +++ b/proto/ospf/ospf.h @@ -94,7 +94,6 @@ struct ospf_iface { #define OSPF_IS_DR 6 /* I'm DR */ timer *wait_timer; /* WAIT timer */ timer *hello_timer; /* HELLOINT timer */ - timer *rxmt_timer; /* RXMT timer */ /* Default values for interface parameters */ #define COST_D 10 #define RXMTINT_D 5 @@ -172,7 +171,7 @@ struct ospf_lsa_header { #define LSA_T_SUM_RT 4 #define LSA_T_EXT 5 u32 rt; /* Advertising router */ - u32 sn; /* LS Sequence number */ + s32 sn; /* LS Sequence number */ #define LSA_INITSEQNO 0x80000001 #define LSA_MAXSEQNO 0x7fffffff u16 checksum; @@ -264,6 +263,7 @@ struct ospf_neighbor slist lsrtl; /* Link state retransmission list */ siterator lsrti; void *ldbdes; /* Last database description packet */ + timer *rxmt_timer; /* RXMT timer */ }; /* Definitions for interface state machine */ |