Add NETISR_ARP.

This commit is contained in:
mycroft 1994-04-18 23:33:34 +00:00
parent 7b52dc20c4
commit 00d9262a55
1 changed files with 5 additions and 1 deletions

View File

@ -37,7 +37,7 @@
*
* from: Utah Hdr: machdep.c 1.63 91/04/24
* from: @(#)machdep.c 7.16 (Berkeley) 6/3/91
* $Id: machdep.c,v 1.27 1994/01/31 17:09:33 mycroft Exp $
* $Id: machdep.c,v 1.28 1994/04/18 23:33:34 mycroft Exp $
*/
#include "param.h"
@ -1140,6 +1140,10 @@ badbaddr(addr)
netintr()
{
#ifdef INET
if (netisr & (1 << NETISR_ARP)) {
netisr &= ~(1 << NETISR_ARP);
arpintr();
}
if (netisr & (1 << NETISR_IP)) {
netisr &= ~(1 << NETISR_IP);
ipintr();