NETSIM  1.0.1
Hardware-in-the-loopacousticnetworksimulator
config_request.proto
Go to the documentation of this file.
1 syntax="proto2";
2 
3 package netsim.protobuf;
4 
5 message ConfigRequest
6 {
7  enum Subsystem
8  {
9  MANAGER=1;
10  }
11 
12  required Subsystem subsystem = 1;
13 }
14