public inbox for newlib-cvs@sourceware.org
help / color / mirror / Atom feed
From: Sebastian Huber <sh@sourceware.org>
To: newlib-cvs@sourceware.org
Subject: [newlib-cygwin] tcp: Add a socket option to rack
Date: Mon, 11 Jul 2022 11:54:40 +0000 (GMT)	[thread overview]
Message-ID: <20220711115440.2A2DB3854154@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=b89c5a3e88c6ba876dd0d4ffedc49b17040c903c

commit b89c5a3e88c6ba876dd0d4ffedc49b17040c903c
Author: Randall Stewart <rrs@FreeBSD.org>
Date:   Wed May 26 06:43:30 2021 -0400

    tcp: Add a socket option to rack
    
    so we can test various changes to the slop value in timers.
    
    Timer_slop, in TCP, has been 200ms for a long time. This value dates back
    a long time when delayed ack timers were longer and links were slower. A
    200ms timer slop allows 1 MSS to be sent over a 60kbps link. Its possible that
    lowering this value to something more in line with todays delayed ack values (40ms)
    might improve TCP. This bit of code makes it so rack can, via a socket option,
    adjust the timer slop.
    
    Reviewed by: mtuexen
    Sponsered by: Netflix Inc
    Differential Revision:  https://reviews.freebsd.org/D30249

Diff:
---
 newlib/libc/sys/rtems/include/netinet/tcp.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/newlib/libc/sys/rtems/include/netinet/tcp.h b/newlib/libc/sys/rtems/include/netinet/tcp.h
index 7ba99df51..45bece9fa 100644
--- a/newlib/libc/sys/rtems/include/netinet/tcp.h
+++ b/newlib/libc/sys/rtems/include/netinet/tcp.h
@@ -306,6 +306,7 @@ struct tcphdr {
 #define TCP_FAST_RSM_HACK 1137 /* Do we do the broken thing where we don't twiddle the TLP bits properly in fast_rsm_output? */
 #define TCP_RACK_PACING_BETA 1138	/* Changing the beta for pacing */
 #define TCP_RACK_PACING_BETA_ECN 1139	/* Changing the beta for ecn with pacing */
+#define TCP_RACK_TIMER_SLOP 1140	/* Set or get the timer slop used */
 
 /* Start of reserved space for third-party user-settable options. */
 #define	TCP_VENDOR	SO_VENDOR


                 reply	other threads:[~2022-07-11 11:54 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220711115440.2A2DB3854154@sourceware.org \
    --to=sh@sourceware.org \
    --cc=newlib-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).