Subject: CVS commit: syssrc
To: None <source-changes@netbsd.org>
From: Jason R Thorpe <thorpej@netbsd.org>
List: source-changes
Date: 02/12/2000 09:19:44
Module Name: syssrc
Committed By: thorpej
Date: Sat Feb 12 17:19:43 UTC 2000
Modified Files:
syssrc/sys/netinet: tcp_input.c
Log Message:
In the tcp_input() path:
- Filter out multicast destinations explicitly for every incoming packet,
not just SYNs. Previously, non-SYN multicast destination would be
filtered out as a side effect of PCB lookup. Remove now redundant
similar checks in the dropwithreset case and in syn_cache_add().
- Defer the TCP checksum until we know that we want to process the
packet (i.e. have a non-CLOSED connection or a listen socket).
To generate a diff of this commit:
cvs rdiff -r1.102 -r1.103 syssrc/sys/netinet/tcp_input.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.