mirror of
https://github.com/opnsense/src.git
synced 2026-03-27 05:03:09 -04:00
Move handle_signals() to before the FD_SETs. handle_signals()
may result in a our modem closing after it's made its way into the fd_set, resulting in a program exit (with select(): bad file descriptor) rather than a dropped link.
This commit is contained in:
parent
cebe467c61
commit
dcf9e6a5b2
1 changed files with 6 additions and 3 deletions
|
|
@ -17,7 +17,7 @@
|
|||
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
||||
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* $Id: main.c,v 1.120 1998/01/27 23:14:51 brian Exp $
|
||||
* $Id: main.c,v 1.121 1998/01/29 00:42:05 brian Exp $
|
||||
*
|
||||
* TODO:
|
||||
* o Add commands for traffic summary, version display, etc.
|
||||
|
|
@ -885,6 +885,11 @@ DoLoop(void)
|
|||
IpStartOutput();
|
||||
qlen = ModemQlen();
|
||||
}
|
||||
|
||||
#ifdef SIGALRM
|
||||
handle_signals();
|
||||
#endif
|
||||
|
||||
if (modem >= 0) {
|
||||
if (modem + 1 > nfds)
|
||||
nfds = modem + 1;
|
||||
|
|
@ -910,8 +915,6 @@ DoLoop(void)
|
|||
*/
|
||||
usleep(TICKUNIT);
|
||||
TimerService();
|
||||
#else
|
||||
handle_signals();
|
||||
#endif
|
||||
|
||||
/* If there are aren't many packets queued, look for some more. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue