Goby3  3.1.5
2024.05.14
rockblock_simulator_config.proto
Go to the documentation of this file.
1 syntax = "proto2";
2 
3 import "goby/middleware/protobuf/app_config.proto";
4 import "goby/middleware/protobuf/pty_config.proto";
5 
6 package goby.apps.acomms.protobuf;
7 
8 message 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 }