Goby3 3.2.3
2025.05.13
Loading...
Searching...
No Matches
test.proto
Go to the documentation of this file.
1syntax = "proto2";
2import "dccl/option_extensions.proto";
3import "goby/test/acomms/dccl3/header.proto";
4
5package goby.test.acomms.protobuf;
6
7message GobyMessage
8{
9 option (dccl.msg).id = 4;
10 option (dccl.msg).max_bytes = 32;
11 option (dccl.msg).codec_version = 3;
12
13 required string telegram = 1 [(dccl.field).max_length = 10];
14 required Header header = 2 [(dccl.field).in_head = true];
15}