2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-30 05:47:45 +00:00

Subroutinize some stuff so that it can be called in trace playback.

This commit is contained in:
Ted Lemon 2001-02-12 19:41:30 +00:00
parent fc33f8c58e
commit eb6b5a2014

View File

@ -3,7 +3,7 @@
Network input dispatcher... */ Network input dispatcher... */
/* /*
* Copyright (c) 1995-2000 Internet Software Consortium. * Copyright (c) 1995-2001 Internet Software Consortium.
* All rights reserved. * All rights reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
@ -43,7 +43,7 @@
#ifndef lint #ifndef lint
static char copyright[] = static char copyright[] =
"$Id: dispatch.c,v 1.62 2000/05/16 23:02:14 mellon Exp $ Copyright (c) 1995-2000 The Internet Software Consortium. All rights reserved.\n"; "$Id: dispatch.c,v 1.63 2001/02/12 19:41:30 mellon Exp $ Copyright (c) 1995-2001 The Internet Software Consortium. All rights reserved.\n";
#endif /* not lint */ #endif /* not lint */
#include "dhcpd.h" #include "dhcpd.h"
@ -53,21 +53,17 @@ static struct timeout *free_timeouts;
int interfaces_invalidated; int interfaces_invalidated;
/* Wait for packets to come in using select(). When one does, call void set_time (u_int32_t t)
receive_packet to receive the packet and possibly strip hardware
addressing information from it, and then call through the
bootp_packet_handler hook to try to do something with it. */
void dispatch ()
{ {
fd_set r, w, x; /* Do any outstanding timeouts. */
struct protocol *l; if (cur_time != t) {
int max = 0; cur_time = t;
int count; process_outstanding_timeouts ((struct timeval *)0);
struct timeval tv, *tvp; }
isc_result_t status; }
do { struct timeval *process_outstanding_timeouts (struct timeval *tvp)
{
/* Call any expired timeouts, and then if there's /* Call any expired timeouts, and then if there's
still a timeout registered, time out the select still a timeout registered, time out the select
call then. */ call then. */
@ -84,13 +80,28 @@ void dispatch ()
free_timeouts = t; free_timeouts = t;
goto another; goto another;
} }
tv.tv_sec = timeouts -> when; if (tvp) {
tv.tv_usec = 0; tvp -> tv_sec = timeouts -> when;
tvp = &tv; tvp -> tv_usec = 0;
}
return tvp;
} else } else
tvp = (struct timeval *)0; return (struct timeval *)0;
}
/* Wait for packets to come in using select(). When one does, call
receive_packet to receive the packet and possibly strip hardware
addressing information from it, and then call through the
bootp_packet_handler hook to try to do something with it. */
void dispatch ()
{
struct timeval tv, *tvp;
isc_result_t status;
/* Wait for a packet or a timeout... XXX */ /* Wait for a packet or a timeout... XXX */
do {
tvp = process_outstanding_timeouts (&tv);
status = omapi_one_dispatch (0, tvp); status = omapi_one_dispatch (0, tvp);
} while (status == ISC_R_TIMEDOUT || status == ISC_R_SUCCESS); } while (status == ISC_R_TIMEDOUT || status == ISC_R_SUCCESS);
log_fatal ("omapi_one_dispatch failed: %s -- exiting.", log_fatal ("omapi_one_dispatch failed: %s -- exiting.",