[][src]Module webdav_handler::warp

This is supported on feature="warp-compat" only.

Adapter for the warp HTTP server framework.

The filters in this module will always succeed and never return an error. For example, if a file is not found, the filter will return a 404 reply, and not an internal rejection.

Functions

dav_dirfeature="warp-compat"

Creates a Filter that serves files and directories at the base path joined with the remainder of the request path, like warp::filters::fs::dir.

dav_filefeature="warp-compat"

Creates a Filter that serves a single file, ignoring the request path, like warp::filters::fs::file.

dav_handlerfeature="warp-compat"

Reply-filter that runs a DavHandler.