aboutsummaryrefslogtreecommitdiff
path: root/examples/network_server/fileproto.proto
diff options
context:
space:
mode:
Diffstat (limited to 'examples/network_server/fileproto.proto')
-rw-r--r--examples/network_server/fileproto.proto18
1 files changed, 18 insertions, 0 deletions
diff --git a/examples/network_server/fileproto.proto b/examples/network_server/fileproto.proto
new file mode 100644
index 0000000..3e70c49
--- /dev/null
+++ b/examples/network_server/fileproto.proto
@@ -0,0 +1,18 @@
+// This defines protocol for a simple server that lists files.
+//
+// See also the nanopb-specific options in fileproto.options.
+
+message ListFilesRequest {
+ optional string path = 1 [default = "/"];
+}
+
+message FileInfo {
+ required uint64 inode = 1;
+ required string name = 2;
+}
+
+message ListFilesResponse {
+ optional bool path_error = 1 [default = false];
+ repeated FileInfo file = 2;
+}
+