diff options
author | Omar Rizwan <omar.rizwan@gmail.com> | 2019-02-25 13:02:25 -0800 |
---|---|---|
committer | Omar Rizwan <omar.rizwan@gmail.com> | 2019-02-25 13:02:25 -0800 |
commit | 784ec83696d9ecedc10ede022a035e671dd21607 (patch) | |
tree | a459ee535e22ce53c344dc53452050d511428a67 /fs/ws.h | |
parent | 90181466bd12553abef43f165b7b8a2c7ad2f1c3 (diff) |
Rewrite and refactor C half. No more shared memory! It's fast!
Three C modules:
- tabfs (main thread; talks to FUSE)
- common (tabfs<->ws communication helpers)
- ws (side thread; talks to browser over WebSocket)
It's single-threaded, but I don't think that matters anyway.
Diffstat (limited to 'fs/ws.h')
-rw-r--r-- | fs/ws.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -0,0 +1,6 @@ +#ifndef WS_H +#define WS_H + +void *websocket_main(void *threadid); + +#endif |