diff options
| author | Garrett Wollman <wollman@FreeBSD.org> | 2001-01-24 16:25:36 +0000 |
|---|---|---|
| committer | Garrett Wollman <wollman@FreeBSD.org> | 2001-01-24 16:25:36 +0000 |
| commit | a589a70ee145ae8caf6ba5bc035a35a8b06e004d (patch) | |
| tree | fd15e35e8273c63a360df229626bd29e85311166 /sys/netinet | |
| parent | f5ace7753325777a33a2cc5b39a8936704759a84 (diff) | |
Notes
Diffstat (limited to 'sys/netinet')
| -rw-r--r-- | sys/netinet/tcp_input.c | 2 | ||||
| -rw-r--r-- | sys/netinet/tcp_reass.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 367fc95a8d96..07070ba143ee 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -501,7 +501,7 @@ tcp_input(m, off0, proto) * both the SYN and FIN bits set. This prevents e.g. nmap from * identifying the TCP/IP stack. * - * This is incompatible with RFC1644 extensions (T/TCP). + * This is a violation of the TCP specification. */ if (drop_synfin && (thflags & (TH_SYN|TH_FIN)) == (TH_SYN|TH_FIN)) goto drop; diff --git a/sys/netinet/tcp_reass.c b/sys/netinet/tcp_reass.c index 367fc95a8d96..07070ba143ee 100644 --- a/sys/netinet/tcp_reass.c +++ b/sys/netinet/tcp_reass.c @@ -501,7 +501,7 @@ tcp_input(m, off0, proto) * both the SYN and FIN bits set. This prevents e.g. nmap from * identifying the TCP/IP stack. * - * This is incompatible with RFC1644 extensions (T/TCP). + * This is a violation of the TCP specification. */ if (drop_synfin && (thflags & (TH_SYN|TH_FIN)) == (TH_SYN|TH_FIN)) goto drop; |
