diff options
author | Fernando Gont <fgont@cvs.openbsd.org> | 2005-05-24 00:02:38 +0000 |
---|---|---|
committer | Fernando Gont <fgont@cvs.openbsd.org> | 2005-05-24 00:02:38 +0000 |
commit | ccbd34c531a3b5f794af2397a390d37591123edd (patch) | |
tree | 4cad1082ada98803272618b2e9b088de0194fc63 /sys/netinet/tcp_var.h | |
parent | d2a04a2e4815b17622759fb69f72d609a9532847 (diff) |
Ignore ICMP Source Quench messages meant for TCP connections. (Details in
http://www.gont.com.ar/drafts/icmp-attacks-against-tcp.html)
ok markus frantzen
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r-- | sys/netinet/tcp_var.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index e91872a60f6..04334ea17e6 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_var.h,v 1.73 2005/04/05 20:27:35 markus Exp $ */ +/* $OpenBSD: tcp_var.h,v 1.74 2005/05/24 00:02:37 fgont Exp $ */ /* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */ /* @@ -593,7 +593,6 @@ struct tcpcb * void tcp_notify(struct inpcb *, int); int tcp_output(struct tcpcb *); void tcp_pulloutofband(struct socket *, u_int, struct mbuf *, int); -void tcp_quench(struct inpcb *, int); int tcp_reass(struct tcpcb *, struct tcphdr *, struct mbuf *, int *); void tcp_rscale(struct tcpcb *, u_long); void tcp_respond(struct tcpcb *, caddr_t, struct mbuf *, tcp_seq, |