[PATCH] doc: fix web (run-server) examples

2022-02-02 Thread Aleix Conchillo Flaqué
* doc/ref/web.texi (Web Server): need quasiquote to in order to evaluate AF_INET6. --- doc/ref/web.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/ref/web.texi b/doc/ref/web.texi index 93cd0214f..49a09d0ca 100644 --- a/doc/ref/web.texi +++ b/doc/ref/web.texi @@ -1,

[PATCH] web: default to INADDR_ANY instead of INADDR_LOOPBACK

2022-02-02 Thread Aleix Conchillo Flaqué
Using INADDR_ANY instead of INADDR_LOOPBACK makes it convenient when starting the web server inside containers without the need to having to specify INADDR_ANY all the time. This is the default in most libraries and languages. This doesn't break backwards compatibility since INADDR_LOOPBACK is als

C based vector and bytevector copy

2022-02-02 Thread Stefan Israelsson Tampe
Hi all, I have streamlined my c-based superfast vector copy lib in stis-supervectors to get a self contained c-file that generates *vector-copy! that handles all types of bytevectors and SCM vectors, can have different directions can have different endianes and can have arbitrary intervals like py

Re: [PATCH] doc: fix web (run-server) examples

2022-02-02 Thread Dr. Arne Babenhauserheide
Aleix Conchillo Flaqué writes: > * doc/ref/web.texi (Web Server): need quasiquote to in order to evaluate > AF_INET6. > --- > -(run-server handler 'http '(#:family AF_INET6 #:port 8081)) > +(run-server handler 'http `(#:family ,AF_INET6 #:port 8081)) Looks good! Thank you! (this would have save

Re: [PATCH] web: default to INADDR_ANY instead of INADDR_LOOPBACK

2022-02-02 Thread Dr. Arne Babenhauserheide
Aleix Conchillo Flaqué writes: > Using INADDR_ANY instead of INADDR_LOOPBACK makes it convenient when > starting the web server inside containers without the need to having to > specify INADDR_ANY all the time. This is the default in most libraries > and languages. > > This doesn't break backwar