When dosourcerouting is set do not sourceoute....
This commit is contained in:
parent
af87f94a9c
commit
16baeb2dba
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user