diff options
author | Ludovic Courtès <ludo@gnu.org> | 2012-10-18 22:21:26 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-10-18 22:32:23 +0200 |
commit | d14ecda913be98151f9c92f5f35e88cdb3457580 (patch) | |
tree | c0f1a952c98185711eabbdae59a26577a96d9390 /guix/ftp-client.scm | |
parent | 1c3972daa823ae6f669f6668b236250eec6aa324 (diff) | |
download | gnu-guix-d14ecda913be98151f9c92f5f35e88cdb3457580.tar gnu-guix-d14ecda913be98151f9c92f5f35e88cdb3457580.tar.gz |
http/ftp: Tweak to avoid depending on libc's NSS.
* guix/build/http.scm (open-connection-for-uri): New procedure.
(http-fetch): Use it. Pass the result as a #:port argument to
`http-get'.
Add hack to modify the `set-port-encoding!' binding in (web response).
* guix/ftp-client.scm (ftp-open): Add optional `port' parameter,
defaulting to 21. When calling `getaddrinfo', convert PORT to a
string and pass AI_NUMERICSERV when PORT is a number.
Diffstat (limited to 'guix/ftp-client.scm')
-rw-r--r-- | guix/ftp-client.scm | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/guix/ftp-client.scm b/guix/ftp-client.scm index a42d7956da..67c8472c7d 100644 --- a/guix/ftp-client.scm +++ b/guix/ftp-client.scm @@ -80,12 +80,18 @@ ((331) (%ftp-command (string-append "PASS " pass) 230 port)) (else (throw 'ftp-error port command code message)))))) -(define (ftp-open host) - "Open an FTP connection to HOST, and return it." +(define* (ftp-open host #:optional (port 21)) + "Open an FTP connection to HOST on PORT (a service-identifying string, +or a TCP port number), and return it." + ;; Use 21 as the default PORT instead of "ftp", to avoid depending on + ;; libc's NSS, which is not available during bootstrap. + (catch 'getaddrinfo-error (lambda () (define addresses - (getaddrinfo host "ftp")) + (getaddrinfo host + (if (number? port) (number->string port) port) + (if (number? port) AI_NUMERICSERV 0))) (let loop ((addresses addresses)) (let* ((ai (car addresses)) |