unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
* [PATCH] http: Support CONNECT and PATCH HTTP methods.
@ 2020-04-10 17:09 Christopher Baines
  2020-05-17 21:40 ` Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Christopher Baines @ 2020-04-10 17:09 UTC (permalink / raw)
  To: guile-devel

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
--- a/module/web/http.scm
+++ b/module/web/http.scm
@@ -1108,6 +1108,8 @@ symbol, like ‘GET’."
    ((string= str "DELETE" start end) 'DELETE)
    ((string= str "OPTIONS" start end) 'OPTIONS)
    ((string= str "TRACE" start end) 'TRACE)
+   ((string= str "CONNECT" start end) 'CONNECT)
+   ((string= str "PATCH" start end) 'PATCH)
    (else (bad-request "Invalid method: ~a" (substring str start end)))))
 
 (define* (parse-request-uri str #:optional (start 0) (end (string-length str)))
-- 
2.26.0




^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] http: Support CONNECT and PATCH HTTP methods.
  2020-04-10 17:09 [PATCH] http: Support CONNECT and PATCH HTTP methods Christopher Baines
@ 2020-05-17 21:40 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2020-05-17 21:40 UTC (permalink / raw)
  To: guile-devel

Hello,

Christopher Baines <mail@cbaines.net> 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’.




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-05-17 21:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-10 17:09 [PATCH] http: Support CONNECT and PATCH HTTP methods Christopher Baines
2020-05-17 21:40 ` Ludovic Courtès

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).