daemon: Add support for EMANE 1.2.1.

This commit is contained in:
Tom Goff 2018-03-21 15:25:06 -04:00
parent f328cdae3b
commit 02538522a4

View file

@ -10,6 +10,7 @@ EMANE091 = 91
EMANE092 = 92
EMANE093 = 93
EMANE101 = 101
EMANE121 = 121
VERSION = None
VERSIONSTR = None
@ -44,6 +45,8 @@ def emane_version():
VERSION = EMANE093
elif result.startswith("1.0.1"):
VERSION = EMANE101
elif result.startswith("1.2.1"):
VERSION = EMANE121
VERSIONSTR = result.strip()