(previous e-mail did not have specific subject, corrected in this e-mail, sorry for unspecific subject, simply forgot to change before sending the e-mail)
Hi Ludovic, Thank you! This was the missing piece. Host should apparently be a combination of domain and port, if I understand correctly. I seem to be able to talk to dockerd from Guile now : ) I will add an example of how to connect to UNIX socket in my repos. Regards, Zelphir On 6/2/19 11:45 PM, [email protected] wrote: > Message: 3 > Date: Sun, 02 Jun 2019 18:29:43 +0200 > From: Ludovic Court?s <[email protected]> > To: [email protected] > Subject: Re: Using UNIX sockets (Zelphir Kaltstahl) > Message-ID: <[email protected]> > Content-Type: text/plain; charset=utf-8 > > Hi Zelphir, > > Zelphir Kaltstahl <[email protected]> skribis: > > > [...] > >> ;; Apparently the `host` header must be specified. >> ;; The `host` header in this case is ???. >> #:headers '((host . "localhost")) > This should be: > > #:headers '((host . ("localhost" . #f))) > > or: > > #:headers '((host . ("localhost" . 1234))) > > where 1234 is a port number. > > HTH! > > Ludo?.
