1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-28 08:10:45 +00:00
Go to file
2019-02-10 09:38:31 +01:00
.github/ISSUE_TEMPLATE Update issue templates 2019-02-03 11:33:32 +01:00
inc added shared library 2019-02-09 20:08:42 +01:00
src added timeout handling 2019-02-09 19:02:53 +01:00
test-src added timeout handling 2019-02-09 19:02:53 +01:00
.gitignore switched tests to google test 2019-01-30 21:53:57 +01:00
.travis.yml fix: yet another typo fixed 2019-02-10 09:01:22 +01:00
AUTHORS added license and authors files 2019-01-27 03:52:29 +01:00
CMakeLists.txt fix: force c++11 for unit tests 2019-02-10 09:38:31 +01:00
COPYING.LESSER added license and authors files 2019-01-27 03:52:29 +01:00
README.md use libwebsockets as loop for fuse fd; removed dependency to libuv, since it is not needed anymore; disabled jsonrpc temporary, until refactoring is finished (will not work properly) 2019-02-06 00:58:51 +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