summaryrefslogtreecommitdiff
path: root/guix/build
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-05-23 22:19:37 +0200
committerLudovic Courtès <ludo@gnu.org>2014-05-23 22:19:37 +0200
commita68d976b666a5097585cf221f4f8d793f90f3464 (patch)
tree66585e61ec97ecbcf9107f17cad79a7075b400cf /guix/build
parentfb729425dcd80b8ef34c075867d2f204bc4d55cb (diff)
download: Enlarge your receive buffer.
* guix/build/download.scm (open-connection-for-uri): Remove call to 'setsockopt'. * guix/http-client.scm (open-socket-for-uri)[rmem-max, buffer-size]: New variables. Add call to 'setsockopt'.
Diffstat (limited to 'guix/build')
-rw-r--r--guix/build/download.scm2
1 files changed, 0 insertions, 2 deletions
diff --git a/guix/build/download.scm b/guix/build/download.scm
index 5d881b93ee..d98933a907 100644
--- a/guix/build/download.scm
+++ b/guix/build/download.scm
@@ -167,8 +167,6 @@ which is not available during bootstrap."
;; Buffer input and output on this port.
(setvbuf s _IOFBF)
- ;; Enlarge the receive buffer.
- (setsockopt s SOL_SOCKET SO_RCVBUF (* 12 1024))
(if (eq? 'https (uri-scheme uri))
(tls-wrap s)