The ipfw(8) 'tee' action simply hasn't worked on incoming packets for

some time. _All_ packets, regardless of destination, were accepted by
the machine as if addressed to it.

Jump back to 'pass' processing for a teed packet instead of falling
through as if it was ours.

PR:		kern/31130
Reviewed by:	-net, luigi
MFC after:	2 weeks
This commit is contained in:
Crist J. Clark 2002-01-26 10:14:08 +00:00
parent f44609fe71
commit 56962689cc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=89809

View file

@ -806,6 +806,9 @@ ip_input(struct mbuf *m)
return;
m = clone;
ip = mtod(m, struct ip *);
ip->ip_len += hlen;
divert_info = 0;
goto pass;
}
#endif