diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-01-06 08:18:58 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-01-06 08:18:58 -0600 |
| commit | b3a9082a8b81c28ef81dbaaffe171f646b1f2777 (patch) | |
| tree | d878ad0185657eff76426888d46420b48e47725b /src/proto.rs | |
| parent | a65325e15844f880132a69b447e4aec983cb30ab (diff) | |
Implement Fsync/Fsyncdir
Diffstat (limited to 'src/proto.rs')
| -rw-r--r-- | src/proto.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/proto.rs b/src/proto.rs index 2d53fe6..7e81201 100644 --- a/src/proto.rs +++ b/src/proto.rs @@ -332,6 +332,12 @@ pub struct FsyncIn { pub padding: u32, } +bitflags! { + pub struct FsyncFlags: u32 { + const FDATASYNC = 1 << 0; + } +} + #[derive(Pod, Zeroable, Copy, Clone)] #[repr(C)] pub struct SetxattrIn { |
