ESPAsyncWebServer icon indicating copy to clipboard operation
ESPAsyncWebServer copied to clipboard

Added support for webdav http methods

Open rostwolke opened this issue 5 years ago • 0 comments

Reason for the PR

I am currently working on a webdav server using ESPAsyncWebServer. Since the request method is not a string, the enum needed to be extended by some additional methods.

What I've changed

  • Changed WebRequestMethodComposite from uint8_t to uint16_t
  • Added support for PROPFIND, LOCK, UNLOCK, PROPPATCH, MKCOL, MOVE, COPY
  • Added a method RESERVED which is currently not needed (could be removed)

rostwolke avatar Jan 15 '20 07:01 rostwolke