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