Add `close-connection'.

* guix/store.scm (close-connection): New procedure.
This commit is contained in:
Ludovic Courtès 2012-08-22 17:22:46 +02:00
parent 800cdeef31
commit 3abaf0c440
1 changed files with 5 additions and 0 deletions

View File

@ -41,6 +41,7 @@
hash-algo
open-connection
close-connection
set-build-options
valid-path?
add-text-to-store
@ -280,6 +281,10 @@
(process-stderr s)
s))))))))
(define (close-connection server)
"Close the connection to SERVER."
(close (nix-server-socket server)))
(define current-build-output-port
;; The port where build output is sent.
(make-parameter (current-error-port)))