Goby3 3.3.0
2025.07.10
Loading...
Searching...
No Matches
test.proto
Go to the documentation of this file.
1syntax = "proto2";
2import "dccl/option_extensions.proto";
3
4package goby.test.acomms.protobuf;
5
6message GobyMessage
7{
8 option (dccl.msg).id = 4;
9 option (dccl.msg).max_bytes = 32;
10 option (dccl.msg).codec_version = 3;
11
12 // one byte
13 required int32 dest = 1 [(dccl.field).min = 0, (dccl.field).max = 255];
14 // one byte
15 required int32 telegram = 2 [(dccl.field).min = 0, (dccl.field).max = 255];
16}