pygui: fixed issue with changes to protobuf files for getting emane model configs on a session

This commit is contained in:
Blake Harnden 2020-07-28 22:45:42 -07:00
parent 858e771efd
commit fe36d28522
4 changed files with 14 additions and 5 deletions

View file

@ -720,7 +720,7 @@ message Session {
repeated Hook hooks = 9;
repeated string emane_models = 10;
map<string, common.ConfigOption> emane_config = 11;
repeated emane.EmaneModelConfig emane_model_configs = 12;
repeated emane.GetEmaneModelConfig emane_model_configs = 12;
map<int32, common.MappedConfig> wlan_configs = 13;
repeated services.NodeServiceConfig service_configs = 14;
repeated configservices.ConfigServiceConfig config_service_configs = 15;

View file

@ -53,8 +53,15 @@ message GetEmaneModelConfigsRequest {
int32 session_id = 1;
}
message GetEmaneModelConfig {
int32 node_id = 1;
string model = 2;
int32 iface_id = 3;
map<string, common.ConfigOption> config = 4;
}
message GetEmaneModelConfigsResponse {
repeated EmaneModelConfig configs = 1;
repeated GetEmaneModelConfig configs = 1;
}
message GetEmaneEventChannelRequest {