summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-28 18:57:45 +0200
committerxengineering <me@xengineering.eu>2024-05-28 18:57:45 +0200
commit8d53a9f92684a971dd364258bde6f5310daf1ea7 (patch)
tree767c497c1ae89da912bc47d0973cd73791fe1624
parent27048b944dd9b6d49a2070c2cb2a1dc68db76ba3 (diff)
downloadiot-protocol-main.tar
iot-protocol-main.tar.zst
iot-protocol-main.zip
proto: Add initial discovery.protoHEADmain
This is a protobuf definition for a frame payload used for discovery in IoT networks.
-rw-r--r--proto/discovery.proto7
1 files changed, 7 insertions, 0 deletions
diff --git a/proto/discovery.proto b/proto/discovery.proto
new file mode 100644
index 0000000..641d3c1
--- /dev/null
+++ b/proto/discovery.proto
@@ -0,0 +1,7 @@
+syntax = "proto3";
+
+option go_package = "/discovery";
+
+message Frame {
+ int32 ttl = 1;
+}