This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.27.9000-30-gc2b84df


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  c2b84df9b0207d1233b2de07b836a773889d93d8 (commit)
      from  41376f8c626612335649beaa71dc981f017350ad (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=c2b84df9b0207d1233b2de07b836a773889d93d8

commit c2b84df9b0207d1233b2de07b836a773889d93d8
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Tue Feb 6 00:42:22 2018 +0000

    Add TCP_FASTOPEN_KEY, TCP_FASTOPEN_NO_COOKIE from Linux 4.15.
    
    This patch adds the TCP_FASTOPEN_KEY and TCP_FASTOPEN_NO_COOKIE macros
    from Linux 4.15 to sysdeps/gnu/netinet/tcp.h.
    
    Tested for x86_64.
    
    	* sysdeps/gnu/netinet/tcp.h (TCP_FASTOPEN_KEY): New macro.
    	(TCP_FASTOPEN_NO_COOKIE): Likewise.

diff --git a/ChangeLog b/ChangeLog
index e026e56..1a9b7ca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2018-02-06  Joseph Myers  <joseph@codesourcery.com>
 
+	* sysdeps/gnu/netinet/tcp.h (TCP_FASTOPEN_KEY): New macro.
+	(TCP_FASTOPEN_NO_COOKIE): Likewise.
+
 	* sysdeps/unix/sysv/linux/bits/in.h (IPV6_FREEBIND): New macro.
 
 	[BZ #14890]
diff --git a/sysdeps/gnu/netinet/tcp.h b/sysdeps/gnu/netinet/tcp.h
index 75973f0..44a72e9 100644
--- a/sysdeps/gnu/netinet/tcp.h
+++ b/sysdeps/gnu/netinet/tcp.h
@@ -73,6 +73,8 @@
 #define TCP_FASTOPEN_CONNECT	 30 /* Attempt FastOpen with connect.  */
 #define TCP_ULP			 31 /* Attach a ULP to a TCP connection.  */
 #define TCP_MD5SIG_EXT		 32 /* TCP MD5 Signature with extensions.  */
+#define TCP_FASTOPEN_KEY	 33 /* Set the key for Fast Open (cookie).  */
+#define TCP_FASTOPEN_NO_COOKIE	 34 /* Enable TFO without a TFO cookie.  */
 
 #ifdef __USE_MISC
 # include <sys/types.h>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog                 |    3 +++
 sysdeps/gnu/netinet/tcp.h |    2 ++
 2 files changed, 5 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]