aboutsummaryrefslogtreecommitdiffstats
path: root/example/fileproto.proto
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-09-13 12:59:31 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-09-13 12:59:31 +0300
commitf47410ea4b8ae43e19facd378be4cf1073e1813b (patch)
tree53fdc4bac6615f07e830d7d538c90abbea1ead4b /example/fileproto.proto
parentfd9a79a06db00c6199a5dcaee22ed2cd8e3c3e9b (diff)
Move examples into subfolders, add READMEs
Diffstat (limited to 'example/fileproto.proto')
-rw-r--r--example/fileproto.proto18
1 files changed, 0 insertions, 18 deletions
diff --git a/example/fileproto.proto b/example/fileproto.proto
deleted file mode 100644
index 3e70c49..0000000
--- a/example/fileproto.proto
+++ /dev/null
@@ -1,18 +0,0 @@
-// 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;
-}
-