[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Using UNIX sockets (Zelphir Kaltstahl)
From: |
Ludovic Courtès |
Subject: |
Re: Using UNIX sockets (Zelphir Kaltstahl) |
Date: |
Sun, 02 Jun 2019 18:29:43 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) |
Hi Zelphir,
Zelphir Kaltstahl <address@hidden> 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’.