updated emane manager to parse config options from manifest, updates to denote core specific configurations within emane models, update to account for manifest parsing of INETADDR

This commit is contained in:
Blake J. Harnden 2018-04-02 14:00:28 -07:00
parent ac44603205
commit b6d891f124
3 changed files with 26 additions and 38 deletions

View file

@ -17,6 +17,8 @@ def _type_value(config_type):
config_type = config_type.upper()
if config_type == "DOUBLE":
config_type = "FLOAT"
elif config_type == "INETADDR":
config_type = "STRING"
return ConfigDataTypes[config_type].value