Commit 3dcd942c authored by Aaron Jacobs's avatar Aaron Jacobs

Added support for Init in hellofs.

parent a6638727
...@@ -57,6 +57,9 @@ func (fs *helloFS) serve(c *fuse.Connection) { ...@@ -57,6 +57,9 @@ func (fs *helloFS) serve(c *fuse.Connection) {
} }
switch typed := op.(type) { switch typed := op.(type) {
case *fuseops.InitOp:
fs.init(typed)
default: default:
typed.Respond(fuse.ENOSYS) typed.Respond(fuse.ENOSYS)
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment