diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2004-09-16 13:14:29 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2004-09-16 13:14:29 +0000 |
commit | b4ecdcf43ecb8683710d4a3707c03494abc851da (patch) | |
tree | 728ed4ca565842d5f690f3c1cda782456848ce5c /sys/netinet/tcp_var.h | |
parent | 0369f73ac0f79c85d3934730e3da06f49fd2832f (diff) |
don't send partial segments if SS_ISSENDING is set, remember
TF_LASTIDLE across invocations of tcp_output (from freebsd);
ok mcbride
Diffstat (limited to 'sys/netinet/tcp_var.h')
-rw-r--r-- | sys/netinet/tcp_var.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index fb6a8217ae5..fa57d5f4f02 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_var.h,v 1.65 2004/07/15 15:27:22 markus Exp $ */ +/* $OpenBSD: tcp_var.h,v 1.66 2004/09/16 13:14:28 markus Exp $ */ /* $NetBSD: tcp_var.h,v 1.17 1996/02/13 23:44:24 christos Exp $ */ /* @@ -83,6 +83,7 @@ struct tcpcb { #define TF_DISABLE_ECN 0x00040000 /* disable ECN for this connection */ #endif #define TF_REASSLOCK 0x00080000 /* reassembling or draining */ +#define TF_LASTIDLE 0x00100000 /* no outstanding ACK on last send */ struct mbuf *t_template; /* skeletal packet for transmit */ struct inpcb *t_inpcb; /* back pointer to internet pcb */ |