aboutsummaryrefslogtreecommitdiffstats
path: root/src/metadata_msgs.proto
diff options
context:
space:
mode:
Diffstat (limited to 'src/metadata_msgs.proto')
-rw-r--r--src/metadata_msgs.proto33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/metadata_msgs.proto b/src/metadata_msgs.proto
new file mode 100644
index 0000000..8de4949
--- /dev/null
+++ b/src/metadata_msgs.proto
@@ -0,0 +1,33 @@
+syntax = "proto2";
+
+// File copied from: https://github.com/mafintosh/hyperdrive/blob/master/lib/messages.js
+// Copyright (c) 2015 Mathias Buus
+// MIT License (MIT)
+
+
+message Index {
+ required string type = 1;
+ optional bytes content = 2;
+}
+
+message Stat {
+ required uint32 mode = 1;
+ optional uint32 uid = 2;
+ optional uint32 gid = 3;
+ optional uint64 size = 4;
+ optional uint64 blocks = 5;
+ optional uint64 offset = 6;
+ optional uint64 byteOffset = 7;
+ optional uint64 mtime = 8;
+ optional uint64 ctime = 9;
+}
+
+// File copied from: https://github.com/mafintosh/append-tree/blob/master/schema.proto
+// Copyright (c) 2015 Mathias Buus
+// MIT License (MIT)
+
+message Node {
+ required string name = 1;
+ optional bytes value = 2;
+ optional bytes paths = 3;
+}