diff options
author | xengineering <me@xengineering.eu> | 2024-05-28 18:57:45 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-28 18:57:45 +0200 |
commit | 8d53a9f92684a971dd364258bde6f5310daf1ea7 (patch) | |
tree | 767c497c1ae89da912bc47d0973cd73791fe1624 | |
parent | 27048b944dd9b6d49a2070c2cb2a1dc68db76ba3 (diff) | |
download | iot-protocol-main.tar iot-protocol-main.tar.zst iot-protocol-main.zip |
This is a protobuf definition for a frame payload used for discovery in
IoT networks.
-rw-r--r-- | proto/discovery.proto | 7 |
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; +} |