diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2017-10-24 14:49:30 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2017-10-24 14:49:30 +0000 |
commit | 254263a6ea0b62517f0d3aede03adb92fd7f7895 (patch) | |
tree | 6e15752678a4a324eefb76d500ef288dd37bac8c /sys/netinet/tcp_var.h | |
parent | 103f4a1f281be78af1ae6e8f27444e428927763a (diff) |
Refactor handling of partial TCP acknowledgements
With input from Klemens Nanni, OK visa, mpi, bluhm
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r-- | sys/netinet/tcp_var.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index 6b797fd48e7..d5e4d900778 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_var.h,v 1.125 2017/10/22 14:11:34 mikeb Exp $ */ +/* $OpenBSD: tcp_var.h,v 1.126 2017/10/24 14:49:29 mikeb Exp $ */ /* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */ /* @@ -766,11 +766,9 @@ void tcp_clean_sackreport(struct tcpcb *tp); void tcp_sack_adjust(struct tcpcb *tp); struct sackhole * tcp_sack_output(struct tcpcb *tp); -int tcp_sack_partialack(struct tcpcb *, struct tcphdr *); #ifdef DEBUG void tcp_print_holes(struct tcpcb *tp); #endif -int tcp_newreno(struct tcpcb *, struct tcphdr *); u_long tcp_seq_subtract(u_long, u_long ); #ifdef TCP_SIGNATURE int tcp_signature_apply(caddr_t, caddr_t, unsigned int); |