Re: [PATCH] http: Support CONNECT and PATCH HTTP methods.

2020-05-17 Thread Ludovic Courtès
Hello, Christopher Baines skribis: > PATCH is described by RFC 5789 and CONNECT is described by RFC 7231. > > * module/web/http.scm (parse-http-method): Support CONNECT and PATCH. Applied, thanks! Ludo’.

[PATCH] http: Support CONNECT and PATCH HTTP methods.

2020-04-10 Thread Christopher Baines
PATCH is described by RFC 5789 and CONNECT is described by RFC 7231. * module/web/http.scm (parse-http-method): Support CONNECT and PATCH. --- module/web/http.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/web/http.scm b/module/web/http.scm index de61c9495..4276e1744 100644 ---