Goby3 3.2.3
2025.05.13
Loading...
Searching...
No Matches
rockblock_simulator_config.proto
Go to the documentation of this file.
1syntax = "proto2";
2
3import "goby/middleware/protobuf/app_config.proto";
4import "goby/middleware/protobuf/pty_config.proto";
5
6package goby.apps.acomms.protobuf;
7
8message RockBLOCKSimulatorConfig
9{
10 optional goby.middleware.protobuf.AppConfig app = 1;
11
12 message IMEIToModemID
13 {
14 required string imei = 1;
15 required uint32 modem_id = 2;
16 required goby.middleware.protobuf.PTYConfig pty = 3;
17 }
18
19 repeated IMEIToModemID imei_to_id = 10;
20 required string mo_http_server = 11;
21 optional string mo_http_endpoint = 12 [default = "/"];
22
23 required uint32 mt_http_server_port = 13 [default = 8081];
24}