summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guix/store.scm10
1 files changed, 7 insertions, 3 deletions
diff --git a/guix/store.scm b/guix/store.scm
index 30344da91f5..ec72786f347 100644
--- a/guix/store.scm
+++ b/guix/store.scm
@@ -118,6 +118,8 @@
118 set-store-connection-cache 118 set-store-connection-cache
119 set-store-connection-cache! 119 set-store-connection-cache!
120 120
121 %default-store-connection-buffer-size
122
121 connect-to-daemon 123 connect-to-daemon
122 open-connection 124 open-connection
123 port->connection 125 port->connection
@@ -356,10 +358,11 @@ non-blocking."
356 (errno (system-error-errno args))))) 358 (errno (system-error-errno args)))))
357 (loop rest))))))))) 359 (loop rest)))))))))
358 360
359(define %default-buffer-size 8192) 361(define %default-store-connection-buffer-size 8192)
360 362
361(define* (connect-to-daemon uri-or-filename #:key non-blocking? 363(define* (connect-to-daemon uri-or-filename #:key non-blocking?
362 (buffer-size %default-buffer-size)) 364 (buffer-size
365 %default-store-connection-buffer-size))
363 "Connect to the daemon at URI-OR-FILENAME and return an input/output port. 366 "Connect to the daemon at URI-OR-FILENAME and return an input/output port.
364If NON-BLOCKING?, use a non-blocking socket when using the file, unix or guix 367If NON-BLOCKING?, use a non-blocking socket when using the file, unix or guix
365URI schemes. Use BUFFER-SIZE defaulting to 8192. 368URI schemes. Use BUFFER-SIZE defaulting to 8192.
@@ -406,7 +409,8 @@ the daemon. Use 'open-connection' for that."
406(define* (open-connection #:optional (uri (%daemon-socket-uri)) 409(define* (open-connection #:optional (uri (%daemon-socket-uri))
407 #:key port (reserve-space? #t) cpu-affinity 410 #:key port (reserve-space? #t) cpu-affinity
408 non-blocking? built-in-builders 411 non-blocking? built-in-builders
409 (buffer-size %default-buffer-size)) 412 (buffer-size
413 %default-store-connection-buffer-size))
410 "Connect to the daemon at URI (a string), or, if PORT is not #f, use it as 414 "Connect to the daemon at URI (a string), or, if PORT is not #f, use it as
411the I/O port over which to communicate to a build daemon. 415the I/O port over which to communicate to a build daemon.
412 416