diff options
author | Esben Norby <norby@cvs.openbsd.org> | 2005-03-29 17:26:36 +0000 |
---|---|---|
committer | Esben Norby <norby@cvs.openbsd.org> | 2005-03-29 17:26:36 +0000 |
commit | fd6a239f31bd0a601c18b7a32618796e4ce58af2 (patch) | |
tree | d603d4cbe1a5a71debde9e14f0072cd0fd2d3800 /usr.sbin/ospfd/ospfd.h | |
parent | 449d36e96f33619430f75dba54f492186d6c6a27 (diff) |
The RFC never mentions anything about transfer, this should be transmit.
From Jason Ackley (thanks).
ok claudio@
Diffstat (limited to 'usr.sbin/ospfd/ospfd.h')
-rw-r--r-- | usr.sbin/ospfd/ospfd.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/ospfd/ospfd.h b/usr.sbin/ospfd/ospfd.h index ccafbb988ce..e8dcc8e77d9 100644 --- a/usr.sbin/ospfd/ospfd.h +++ b/usr.sbin/ospfd/ospfd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfd.h,v 1.22 2005/03/26 13:35:16 claudio Exp $ */ +/* $OpenBSD: ospfd.h,v 1.23 2005/03/29 17:26:35 norby Exp $ */ /* * Copyright (c) 2004 Esben Norby <norby@openbsd.org> @@ -152,7 +152,7 @@ struct area { u_int32_t stub_default_cost; u_int32_t num_spf_calc; u_int32_t dead_interval; - u_int16_t transfer_delay; + u_int16_t transmit_delay; u_int16_t hello_interval; u_int16_t rxmt_interval; u_int16_t metric; @@ -289,7 +289,7 @@ struct iface { int state; int mtu; u_int16_t flags; - u_int16_t transfer_delay; + u_int16_t transmit_delay; u_int16_t hello_interval; u_int16_t rxmt_interval; u_int16_t metric; @@ -367,7 +367,7 @@ struct ctl_iface { int mtu; int nbr_cnt; int adj_cnt; - u_int16_t transfer_delay; + u_int16_t transmit_delay; u_int16_t hello_interval; u_int16_t flags; u_int16_t metric; |