ESPAsyncWebServer
ESPAsyncWebServer copied to clipboard
Added support for webdav http methods
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)