aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamin Hitchcock <jamin.hitchcock@gmail.com>2015-08-20 22:27:05 -0500
committerReyk Floeter <reyk@esdenera.com>2015-08-21 09:24:23 +0200
commit83bb0b2027449a60a8fa1144dc9da85df0b844fd (patch)
tree88c9082e5501f73cfcb7bd517fc8589e096003e6
parent674c1ef69f302980c6def35911c1ee3c4b68cef2 (diff)
downloadhttpd-83bb0b2027449a60a8fa1144dc9da85df0b844fd.tar.gz
httpd-83bb0b2027449a60a8fa1144dc9da85df0b844fd.zip
Add MOVE method
-rw-r--r--httpd/server_http.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/httpd/server_http.c b/httpd/server_http.c
index a31e8ff..6b919f2 100644
--- a/httpd/server_http.c
+++ b/httpd/server_http.c
@@ -388,6 +388,7 @@ server_read_http(struct bufferevent *bev, void *arg)
case HTTP_METHOD_OPTIONS:
/* WebDAV methods */
case HTTP_METHOD_COPY:
+ case HTTP_METHOD_MOVE:
clt->clt_toread = 0;
break;
case HTTP_METHOD_POST: