Re: cvs commit: src/sys/netinet ip_output.c

2002-02-03 Thread Crist J. Clark
On Sun, Feb 03, 2002 at 01:33:50PM -0500, Mikhail Teterin wrote: > [Moved to -net] > > On 3 Feb, Rodney W. Grimes wrote: > > > Almost everyone forgets to configure a reject route for 127/8, ie > > route add -net 127 127.0.0.1 -reject > [...] > > IIRC this route was automatically created at on

Re: cvs commit: src/sys/netinet ip_output.c

2002-02-03 Thread Mikhail Teterin
[Moved to -net] On 3 Feb, Rodney W. Grimes wrote: > Almost everyone forgets to configure a reject route for 127/8, ie > route add -net 127 127.0.0.1 -reject [...] > IIRC this route was automatically created at one time in BSD history, Is not /etc/defaults/rc.conf a good place for this now? L

Re: cvs commit: src/sys/netinet ip_output.c

2001-08-03 Thread Bill Fenner
>@@ -964,7 +957,7 @@ sendorfree: > /* clean ipsec history once it goes out of the node */ > ipsec_delaux(m); > #endif >- if (error == 0) { >+ if (error == 0 && ia) { > /* Record statistics for this interface address. */ >

Re: cvs commit: src/sys/netinet ip_output.c

2001-08-03 Thread Daniel C. Sobral
Bill Fenner wrote: >>@@ -964,7 +957,7 @@ sendorfree: >> /* clean ipsec history once it goes out of the node */ >> ipsec_delaux(m); >>#endif >>- if (error == 0) { >>+ if (error == 0 && ia) { >> /* Record statistics for this int

Re: cvs commit: src/sys/netinet ip_output.c

2001-07-19 Thread Garrett Wollman
< said: > correct (in particular, it should be allowed to send a multicast with > all-zeroes source address on an interface with no addresses). It should also be allowed to send a broadcast with a zero source on such an interface -- something which has been broken since The Dawn of Time so far a