guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.11-23-g0bb3f


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.11-23-g0bb3f94
Date: Fri, 23 May 2014 20:08:10 +0000

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 Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=0bb3f946e97424616c1a95f2372e5bc41e8f8174

The branch, stable-2.0 has been updated
       via  0bb3f946e97424616c1a95f2372e5bc41e8f8174 (commit)
      from  c497bfb1f6e58c118aa35087104ab821dca5030c (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 -----------------------------------------------------------------
commit 0bb3f946e97424616c1a95f2372e5bc41e8f8174
Author: Ludovic Courtès <address@hidden>
Date:   Fri May 23 22:00:21 2014 +0200

    web: Keep the default size for the client's in-kernel receive buffer.
    
    Fixes <http://bugs.gnu.org/15368>.
    
    * module/web/client.scm (open-socket-for-uri): Remove call to
      'setsockopt'.  Contrary to what the comment said, its effect was to
      shrink the receive buffer from 124 KiB (the default size, per
      /proc/sys/net/core/rmem_default on Linux-based systems) to 12 KiB.

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

Summary of changes:
 module/web/client.scm |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/module/web/client.scm b/module/web/client.scm
index 3f6c45b..070b0c3 100644
--- a/module/web/client.scm
+++ b/module/web/client.scm
@@ -1,6 +1,6 @@
 ;;; Web client
 
-;; Copyright (C) 2011, 2012, 2013 Free Software Foundation, Inc.
+;; Copyright (C) 2011, 2012, 2013, 2014 Free Software Foundation, Inc.
 
 ;; This library is free software; you can redistribute it and/or
 ;; modify it under the terms of the GNU Lesser General Public
@@ -92,8 +92,6 @@
 
           ;; Buffer input and output on this port.
           (setvbuf s _IOFBF)
-          ;; Enlarge the receive buffer.
-          (setsockopt s SOL_SOCKET SO_RCVBUF (* 12 1024))
           ;; If we're using a proxy, make a note of that.
           (when http-proxy (set-http-proxy-port?! s #t))
           s)


hooks/post-receive
-- 
GNU Guile



reply via email to

[Prev in Thread] Current Thread [Next in Thread]