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.22-201-g5be255c


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  5be255c28b24944b530bb8f91e6bde2e66992c2a (commit)
      from  3f512ca79fda7854da188df0585e71467119206e (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=5be255c28b24944b530bb8f91e6bde2e66992c2a

commit 5be255c28b24944b530bb8f91e6bde2e66992c2a
Author: Joseph Myers <joseph@codesourcery.com>
Date:   Tue Sep 1 13:45:49 2015 +0000

    Add more TCP_* values to netinet/tcp.h.
    
    This patch adds move TCP_* values to sysdeps/gnu/netinet/tcp.h to
    bring it up to date with Linux 4.2.  TCP_SAVE_SYN and TCP_SAVED_SYN
    are new in 4.2, TCP_NOTSENT_LOWAT and TCP_CC_INFO are older (Szabolcs
    previously noted in
    <https://sourceware.org/ml/libc-alpha/2015-06/msg00938.html> that this
    header was out of date in glibc).
    
    Tested for x86_64 (testsuite, and that installed stripped shared
    libraries are unchanged by the patch).
    
    	* sysdeps/gnu/netinet/tcp.h (TCP_NOTSENT_LOWAT): New macro.
    	(TCP_CC_INFO): Likewise.
    	(TCP_SAVE_SYN): Likewise.
    	(TCP_SAVED_SYN): Likewise.

diff --git a/ChangeLog b/ChangeLog
index eafb44a..cb37c5d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2015-09-01  Joseph Myers  <joseph@codesourcery.com>
+
+	* sysdeps/gnu/netinet/tcp.h (TCP_NOTSENT_LOWAT): New macro.
+	(TCP_CC_INFO): Likewise.
+	(TCP_SAVE_SYN): Likewise.
+	(TCP_SAVED_SYN): Likewise.
+
 2015-08-31  Brett Neumeier <brett@neumeier.us>
 
 	[BZ #18870]
diff --git a/sysdeps/gnu/netinet/tcp.h b/sysdeps/gnu/netinet/tcp.h
index f6602ec..3918bca 100644
--- a/sysdeps/gnu/netinet/tcp.h
+++ b/sysdeps/gnu/netinet/tcp.h
@@ -61,6 +61,14 @@
 #define TCP_REPAIR_OPTIONS	 22 /* Repair TCP connection options */
 #define TCP_FASTOPEN		 23 /* Enable FastOpen on listeners */
 #define TCP_TIMESTAMP		 24 /* TCP time stamp */
+#define TCP_NOTSENT_LOWAT	 25 /* Limit number of unsent bytes in
+				       write queue.  */
+#define TCP_CC_INFO		 26 /* Get Congestion Control
+				       (optional) info.  */
+#define TCP_SAVE_SYN		 27 /* Record SYN headers for new
+				       connections.  */
+#define TCP_SAVED_SYN		 28 /* Get SYN headers recorded for
+				       connection.  */
 
 #ifdef __USE_MISC
 # include <sys/types.h>

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

Summary of changes:
 ChangeLog                 |    7 +++++++
 sysdeps/gnu/netinet/tcp.h |    8 ++++++++
 2 files changed, 15 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]