When dosourcerouting is set do not sourceoute....

This commit is contained in:
guido 1997-10-27 21:07:26 +00:00
parent af87f94a9c
commit 16baeb2dba

View File

@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)ip_input.c 8.2 (Berkeley) 1/4/94
* $Id: ip_input.c,v 1.65 1997/09/15 23:07:01 ache Exp $
* $Id: ip_input.c,v 1.66 1997/09/25 00:34:35 wollman Exp $
* $ANA: ip_input.c,v 1.5 1996/09/18 14:34:59 wollman Exp $
*/
@ -950,6 +950,8 @@ ip_dooptions(m)
* Loose routing, and not at next destination
* yet; nothing to do except forward.
*/
if (!ip_dosourceroute)
goto nosourcerouting;
break;
}
off--; /* 0 origin */
@ -965,6 +967,7 @@ ip_dooptions(m)
char buf[4*sizeof "123"];
strcpy(buf, inet_ntoa(ip->ip_dst));
nosourcerouting:
log(LOG_WARNING,
"attempted source route from %s to %s\n",
inet_ntoa(ip->ip_src), buf);