Goby v2
mosh_relay_config.proto
1 
2 import "goby/common/protobuf/option_extensions.proto";
3 import "goby/common/protobuf/app_base_config.proto";
4 import "goby/acomms/protobuf/driver_base.proto";
5 
6 package goby.acomms.protobuf;
7 
8 message MoshRelayConfig
9 {
10  optional AppBaseConfig base = 1;
11 
12  optional string ip_address = 2 [default = "127.0.0.1"];
13  optional uint32 udp_port = 3;
14  optional bool bind = 4;
15 
16  required uint32 src_modem_id = 5;
17  required uint32 dest_modem_id = 6;
18 }