aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorOmar Rizwan <omar.rizwan@gmail.com>2020-11-03 18:47:27 -0800
committerOmar Rizwan <omar.rizwan@gmail.com>2020-11-03 18:47:27 -0800
commit746cf02bd5dc5f85e426efea7324b2110a57e4b4 (patch)
treeab864fbd94537c1f0898c198763deb2379e620ff /fs
parenta21b1923af72381eede1be109d1e187961798093 (diff)
fs: remove out-of-date ws.c reference from comment
Diffstat (limited to 'fs')
-rw-r--r--fs/tabfs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/tabfs.c b/fs/tabfs.c
index 8c6f82d..ddbe384 100644
--- a/fs/tabfs.c
+++ b/fs/tabfs.c
@@ -35,10 +35,10 @@ static cJSON *send_request_then_await_response(cJSON *req) {
// This helper macro is used to implement all the FUSE fs operations.
//
// It constructs a JSON object to represent the incoming request, then
-// dispatches it to the WebSocket server in ws.c (which then
-// dispatches it to our browser extension). It then awaits the
-// response from the browser and lets us pull that apart to ultimately
-// return the data to FUSE.
+// forwards that object to `send_request_then_await_response` (which
+// then dispatches it to our browser extension over stdout). It awaits
+// the response from the browser over stdin, then lets us pull that
+// apart to ultimately return the data to FUSE.
//
// OP is an opcode string which the extension handles in JS.
// REQ_BUILDER_BODY is a block which should add whatever request