https://github.com/zonque/webdavserver
WebDav server implementation for POSIX compliant environments (including ESP IDF)
https://github.com/zonque/webdavserver
esp-idf espidf linux soup webdav-server
Last synced: 3 months ago
JSON representation
WebDav server implementation for POSIX compliant environments (including ESP IDF)
- Host: GitHub
- URL: https://github.com/zonque/webdavserver
- Owner: zonque
- License: lgpl-3.0
- Created: 2021-02-14T11:17:13.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-02-22T08:49:58.000Z (almost 5 years ago)
- Last Synced: 2025-04-04T21:02:11.005Z (9 months ago)
- Topics: esp-idf, espidf, linux, soup, webdav-server
- Language: C++
- Homepage:
- Size: 22.5 KB
- Stars: 7
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WebDav server for POSIX-compatible systems
This package implements a simple WebDav server for systems with a POSIX-compatible file system storage. The server has limited functionality and primarily targets embedded platforms with limited resources.
# Compatibility
## Web server
The code has all parts that are specific to the http request and response factored out through an abstact base class. Examples are provided for the ESPIDF http server as well as libsoup.
## File system
A POSIX compatible file system must be provided. In particular, the code uses the following functions:
* `fopen()`, `fclose()`
* `fread()`, `fwrite()`
* `stat()`
* `access()`
* `opendir()`, `closedir()`
* `unlink()`
* `rename()`
# Current limitations
* No support for locking/unlocking
* No support for property writing
# Installation
## As ESP-IDF component
In your project repository, add this component as sub-module:
```
git submodule init
git submodule add https://github.com/zonque/WebDavServer.git components/webdav
```
# License
LGPL-3, see LICENSE file.