Commit e9a77cf2 authored by Aaron Jacobs's avatar Aaron Jacobs

Added Convert support.

parent f71fe97d
...@@ -114,6 +114,15 @@ func Convert( ...@@ -114,6 +114,15 @@ func Convert(
io = to io = to
co = &to.commonOp co = &to.commonOp
case *bazilfuse.SymlinkRequest:
to := &CreateSymlinkOp{
Parent: InodeID(typed.Header.Node),
Name: typed.NewName,
Target: typed.Target,
}
io = to
co = &to.commonOp
case *bazilfuse.RemoveRequest: case *bazilfuse.RemoveRequest:
if typed.Dir { if typed.Dir {
to := &RmDirOp{ to := &RmDirOp{
......
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