blob: 55ba977e92af324a07dfd0d5a2c8924abba1d9d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- filestate_freebsd.go.orig 2015-06-23 08:32:46 UTC
+++ filestate_freebsd.go
@@ -0,0 +1,8 @@
+package main
+
+type FileState struct {
+ Source *string `json:"source,omitempty"`
+ Offset int64 `json:"offset,omitempty"`
+ Inode uint64 `json:"inode,omitempty"`
+ Device uint64 `json:"device,omitempty"`
+}
|