diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-05-23 22:19:37 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-05-23 22:19:37 +0200 |
commit | a68d976b666a5097585cf221f4f8d793f90f3464 (patch) | |
tree | 66585e61ec97ecbcf9107f17cad79a7075b400cf /guix/build/download.scm | |
parent | fb729425dcd80b8ef34c075867d2f204bc4d55cb (diff) | |
download | gnu-guix-a68d976b666a5097585cf221f4f8d793f90f3464.tar gnu-guix-a68d976b666a5097585cf221f4f8d793f90f3464.tar.gz |
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/download.scm')
-rw-r--r-- | guix/build/download.scm | 2 |
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) |