Goby3  3.1.5
2024.05.14
store_server.proto
Go to the documentation of this file.
1 syntax = "proto2";
2 import "goby/acomms/protobuf/modem_message.proto";
3 
4 package goby.acomms.protobuf;
5 
6 message StoreServerRequest
7 {
8  required int32 modem_id = 1;
9  repeated goby.acomms.protobuf.ModemTransmission outbox = 2;
10  optional uint64 request_id = 3;
11 }
12 
13 message StoreServerResponse
14 {
15  required int32 modem_id = 1;
16  repeated goby.acomms.protobuf.ModemTransmission inbox = 2;
17  optional uint64 request_id = 3;
18 }