diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-06-21 14:14:51 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-12-07 13:53:42 +0100 |
commit | cc881bd15561224f507ed7162016114ed2b15a1e (patch) | |
tree | 066ce30241b3cd9a9ebe173b8d1321f05b0daa4b /proto/ospf | |
parent | b32d557a6eca10c1e1dc2f2ab83e201f53d134b4 (diff) |
BGP: Update to new timers
Diffstat (limited to 'proto/ospf')
-rw-r--r-- | proto/ospf/ospf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/proto/ospf/ospf.h b/proto/ospf/ospf.h index 5aa27a16..dbc231b6 100644 --- a/proto/ospf/ospf.h +++ b/proto/ospf/ospf.h @@ -269,10 +269,10 @@ struct ospf_iface sock *sk; /* IP socket */ list neigh_list; /* List of neighbors (struct ospf_neighbor) */ u32 cost; /* Cost of iface */ - u32 waitint; /* number of sec before changing state from wait */ - u32 rxmtint; /* number of seconds between LSA retransmissions */ - u32 pollint; /* Poll interval */ - u32 deadint; /* after "deadint" missing hellos is router dead */ + u32 waitint; /* Number of seconds before changing state from wait */ + u32 rxmtint; /* Number of seconds between LSA retransmissions */ + u32 pollint; /* Poll interval in seconds */ + u32 deadint; /* After deadint seconds without hellos is router dead */ u32 iface_id; /* Interface ID (iface->index or new value for vlinks) */ u32 vid; /* ID of peer of virtual link */ ip_addr vip; /* IP of peer of virtual link */ |