Add file RPC dup call

This commit is contained in:
pjht 2024-09-17 11:40:28 -05:00
parent e050cb41dc
commit 5812c831e5
Signed by: pjht
GPG Key ID: CA239FC6934E6F3A

View File

@ -59,6 +59,10 @@ impl file_rpc::Server for FileServ {
fn size(&self, _fd: u64) -> Option<u64> {
None
}
fn dup(&self, fd: u64) -> Option<u64> {
Some(fd)
}
}
fn main() {