1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 09:30:45 +00:00
Go to file
2019-02-03 18:12:14 +01:00
src added implementation of low level functions lookup and readdir 2019-02-03 18:12:14 +01:00
test-src made headers C++ compatible ; added basic server test 2019-01-30 22:28:50 +01:00
.gitignore switched tests to google test 2019-01-30 21:53:57 +01:00
AUTHORS added license and authors files 2019-01-27 03:52:29 +01:00
CMakeLists.txt added fuse low level operation stubs 2019-02-02 11:45:38 +01:00
COPYING.LESSER added license and authors files 2019-01-27 03:52:29 +01:00
README.md removed obsolete arguments 2019-01-31 21:45:08 +01:00

fuse-wsfs

fuse-wsfs combines libwebsockets and libfuse. It allows ot attach a remote filesystem via websockets.

Status: Proof of concept

Build and run

cd fuse-wsfs
mkdir ./build
cd ./build
cmake .. -DWITH_TESTS=ON
make
CTEST_OUTPUT_ON_FAILUE=1 make test
mkdir test
./wsfs -m test --document_root=`realpath ../src/app/www` --port=4711

Dependencies