summaryrefslogtreecommitdiffstats
path: root/librpc/idl/file_id.idl
diff options
context:
space:
mode:
Diffstat (limited to 'librpc/idl/file_id.idl')
-rw-r--r--librpc/idl/file_id.idl14
1 files changed, 14 insertions, 0 deletions
diff --git a/librpc/idl/file_id.idl b/librpc/idl/file_id.idl
new file mode 100644
index 0000000..cd1febe
--- /dev/null
+++ b/librpc/idl/file_id.idl
@@ -0,0 +1,14 @@
+[
+ pointer_default(unique)
+]
+interface file_id
+{
+ typedef [public] struct {
+ /* we don't use SMB_DEV_T and SMB_INO_T as we want a fixed size here,
+ and we may be using file system specific code to fill in something
+ other than a dev_t for the device */
+ udlong devid;
+ udlong inode;
+ udlong extid; /* Support systems that use an extended id (e.g. snapshots). */
+ } file_id;
+}