diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2008-10-13 11:10:11 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2008-10-13 11:10:11 +0000 |
commit | ab35a768ad6e4e9b5227ceb4a517657ba7fefcc5 (patch) | |
tree | 9741c230a5c7c1f7f6a37895edc8a6c65e8c14a9 /net/isc-dhcp3-server/files/patch-common::dispatch.c | |
parent | . add linux_base-fc6, linux_base-f7, linux_base-f8 to CONFLICTS; (diff) |
Move isc-dhcp3-(server|client|relay) to isc-dhcp30-(server|client|relay)
to make space for the isc-dhcp31 and isc-dhcp40 servers of it.
Notes
Notes:
svn path=/head/; revision=221530
Diffstat (limited to 'net/isc-dhcp3-server/files/patch-common::dispatch.c')
-rw-r--r-- | net/isc-dhcp3-server/files/patch-common::dispatch.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/net/isc-dhcp3-server/files/patch-common::dispatch.c b/net/isc-dhcp3-server/files/patch-common::dispatch.c deleted file mode 100644 index 0aa709cf0860..000000000000 --- a/net/isc-dhcp3-server/files/patch-common::dispatch.c +++ /dev/null @@ -1,29 +0,0 @@ ---- common/dispatch.c.orig Sun Nov 17 03:26:57 2002 -+++ common/dispatch.c Wed Mar 3 16:20:15 2004 -@@ -95,11 +95,26 @@ - void dispatch () - { - struct timeval tv, *tvp; -+#ifdef ENABLE_POLLING_MODE -+ struct timeval *tvp_new; -+#endif - isc_result_t status; -+ TIME cur_time; - -+ tvp = NULL; -+#ifdef ENABLE_POLLING_MODE -+ tvp_new = NULL; -+#endif - /* Wait for a packet or a timeout... XXX */ - do { - tvp = process_outstanding_timeouts (&tv); -+#ifdef ENABLE_POLLING_MODE -+ GET_TIME (&cur_time); -+ add_timeout(cur_time + polling_interval, state_polling, 0, 0, 0); -+ tvp_new = process_outstanding_timeouts(&tv); -+ if (tvp != NULL && (tvp -> tv_sec > tvp_new -> tv_sec)) -+ tvp = tvp_new; -+#endif /* ENABLE_POLLING_MODE */ - status = omapi_one_dispatch (0, tvp); - } while (status == ISC_R_TIMEDOUT || status == ISC_R_SUCCESS); - log_fatal ("omapi_one_dispatch failed: %s -- exiting.", |