summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>2001-01-24 16:25:36 +0000
committerwollman <wollman@FreeBSD.org>2001-01-24 16:25:36 +0000
commit08d0e8d96f583b8117fa997ae1e1eedc1bee20e9 (patch)
treee4f25f88ed6bd81717baf29841d91a83e9e53314
parentfbc5ce7842c2c2dff2f5817488e067de84055548 (diff)
downloadFreeBSD-src-08d0e8d96f583b8117fa997ae1e1eedc1bee20e9.zip
FreeBSD-src-08d0e8d96f583b8117fa997ae1e1eedc1bee20e9.tar.gz
Correct a comment.
-rw-r--r--sys/netinet/tcp_input.c2
-rw-r--r--sys/netinet/tcp_reass.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c
index 367fc95..07070ba 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 367fc95..07070ba 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;
OpenPOWER on IntegriCloud