guile-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Christopher Baines
Subject: [PATCH] http: Support CONNECT and PATCH HTTP methods.
Date: Fri, 10 Apr 2020 18:09:43 +0100

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]