Added interface mode shorthand

This commit is contained in:
Mark Qvist 2022-04-15 22:13:59 +02:00
parent b35122a872
commit 03d3478b5e
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ class Reticulum:
if "mode" in c:
if c["mode"] == "full":
interface_mode = Interface.Interface.MODE_FULL
elif c["mode"] == "accesspoint" or c["mode"] == "ap":
elif c["mode"] == "access_point" or c["mode"] == "accesspoint" or c["mode"] == "ap":
interface_mode = Interface.Interface.MODE_ACCESS_POINT
elif c["mode"] == "pointtopoint" or c["mode"] == "ptp":
interface_mode = Interface.Interface.MODE_POINT_TO_POINT