From ff2b6a512d7a4f351e48dc9a042099a1010342a3 Mon Sep 17 00:00:00 2001 From: Andrew Schran Date: Tue, 12 Aug 2008 01:05:26 +0100 Subject: [retry] Added configurable timeouts to retry timer New min_timeout and max_timeout fields in struct retry_timer allow users of this timer to set their own desired minimum and maximum timeouts, without being constrained to a single global minimum and maximum. Users of the timer can still elect to use the default global values by leaving the min_timeout and max_timeout fields as 0. --- src/net/udp/dhcp.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/net/udp/dhcp.c') diff --git a/src/net/udp/dhcp.c b/src/net/udp/dhcp.c index 93eee6e9..149bdfb5 100644 --- a/src/net/udp/dhcp.c +++ b/src/net/udp/dhcp.c @@ -1059,6 +1059,8 @@ int start_dhcp ( struct job_interface *job, struct net_device *netdev ) { xfer_init ( &dhcp->xfer, &dhcp_xfer_operations, &dhcp->refcnt ); dhcp->netdev = netdev_get ( netdev ); dhcp->timer.expired = dhcp_timer_expired; + dhcp->timer.min_timeout = DHCP_MIN_TIMEOUT; + dhcp->timer.max_timeout = DHCP_MAX_TIMEOUT; dhcp->start = currticks(); /* Instantiate child objects and attach to our interfaces */ -- cgit v1.2.3-55-g7522