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