diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-01-08 07:46:54 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-01-08 07:46:54 -0600 |
| commit | 3f07297b0f4372e234ffe2b8bccc46312e9b68f8 (patch) | |
| tree | ef4ceabf82e81c679b7be85d1b527e6a63ee0037 /src/proto.rs | |
| parent | fffebe5facf7b88c89c7aaa9385aa845f161e6f1 (diff) | |
Move Ino, Ttl, Timestamp to crate::io
Diffstat (limited to '')
| -rw-r--r-- | src/proto.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/proto.rs b/src/proto.rs index 5587d89..6df93ca 100644 --- a/src/proto.rs +++ b/src/proto.rs @@ -1,13 +1,12 @@ // Based on libfuse/include/fuse_kernel.h +use crate::{util::display_or, FuseError, FuseResult}; use bitflags::bitflags; use bytemuck::{self, try_cast_slice, try_from_bytes, Pod}; use bytemuck_derive::{Pod, Zeroable}; use num_enum::TryFromPrimitive; use std::{convert::TryFrom, ffi::CStr, fmt}; -use crate::{util::display_or, FuseError, FuseResult}; - pub const ROOT_ID: u64 = 1; pub const MAJOR_VERSION: u32 = 7; pub const TARGET_MINOR_VERSION: u32 = 32; |
