diff options
author | Ondrej Filip <feela@network.cz> | 2000-05-03 00:31:48 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-05-03 00:31:48 +0200 |
commit | 249fdef7a10ce507bd224ad9be48a86f09d8f21c (patch) | |
tree | d3bdc1e86bfdc616b571df560429d42247fb1d1f /proto/ospf/ospf.h | |
parent | c45f48fba5a0904f9c3512c3b42c38183fef348b (diff) | |
download | bird-249fdef7a10ce507bd224ad9be48a86f09d8f21c.tar bird-249fdef7a10ce507bd224ad9be48a86f09d8f21c.zip |
Adding InfTransDelay for outgoing lsa.
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 40ac691..9ce0be9 100644 --- a/proto/ospf/ospf.h +++ b/proto/ospf/ospf.h @@ -63,7 +63,7 @@ struct ospf_iface { list neigh_list; /* List of neigbours */ u16 cost; /* Cost of iface */ u16 rxmtint; /* number of seconds between LSA retransmissions */ - u16 iftransdelay; /* The estimated number of seconds it takes to + u16 inftransdelay; /* The estimated number of seconds it takes to transmit a Link State Update Packet over this interface. LSAs contained in the update */ u8 priority; /* A router priority for DR election */ @@ -95,7 +95,7 @@ struct ospf_iface { /* Default values for interface parameters */ #define COST_D 10 #define RXMTINT_D 5 -#define IFTRANSDELAY_D 1 +#define INFTRANSDELAY_D 1 #define PRIORITY_D 1 #define HELLOINT_D 10 #define DEADC_D 4 |