diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-01-05 07:58:36 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-01-05 07:58:36 -0600 |
| commit | 587cb05ec42417a05ed371d500b8734b10cf60f7 (patch) | |
| tree | d043876ba64f4573453a743a609f4e485142332f /examples/passthrough.rs | |
| parent | fe2ec80b262e6457b896f23ec91e4fe9da4b8117 (diff) | |
Implement Link
Diffstat (limited to 'examples/passthrough.rs')
| -rw-r--r-- | examples/passthrough.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/passthrough.rs b/examples/passthrough.rs index 0e0f2c9..32f50ca 100644 --- a/examples/passthrough.rs +++ b/examples/passthrough.rs @@ -368,6 +368,7 @@ async fn main_loop(session: Start, mut fs: Passthrough) -> FuseResult<()> { Mkdir(mkdir) => fs.mkdir(mkdir.op()?).await, Unlink(unlink) => fs.unlink(unlink.op()?).await, Rmdir(rmdir) => fs.rmdir(rmdir.op()?).await, + //TODO: Link Open(open) => fs.open(open.op()?).await, Read(read) => fs.read(read.op()?).await, Write(write) => fs.write(write.op()?).await, |
