From ac5df66f1cafd3f9dd1bcac30b807ae7f13474c2 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Fri, 10 Apr 2020 18:09:43 +0100 Subject: [PATCH] http: Support CONNECT and PATCH HTTP methods. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PATCH is described by RFC 5789 and CONNECT is described by RFC 7231. * module/web/http.scm (parse-http-method): Support CONNECT and PATCH. Signed-off-by: Ludovic Courtès --- 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)))