This commit is contained in:
Mark Qvist 2022-04-27 13:31:44 +02:00
parent 24b7cb777f
commit 8e5b3b4e83
1 changed files with 0 additions and 5 deletions

View File

@ -421,7 +421,6 @@ class Reticulum:
RNS.log("Please remove this AutoInterface instance from your configuration file.", RNS.LOG_ERROR);
RNS.log("You will have to manually configure other interfaces for connectivity.", RNS.LOG_ERROR);
if c["type"] == "UDPInterface":
device = c["device"] if "device" in c else None
port = int(c["port"]) if "port" in c else None
@ -463,7 +462,6 @@ class Reticulum:
else:
interface.ifac_size = 16
if c["type"] == "TCPServerInterface":
device = c["device"] if "device" in c else None
port = int(c["port"]) if "port" in c else None
@ -504,7 +502,6 @@ class Reticulum:
else:
interface.ifac_size = 16
if c["type"] == "TCPClientInterface":
kiss_framing = False
if "kiss_framing" in c and c.as_bool("kiss_framing") == True:
@ -542,7 +539,6 @@ class Reticulum:
else:
interface.ifac_size = 16
if c["type"] == "I2PInterface":
i2p_peers = c.as_list("peers") if "peers" in c else None
connectable = c.as_bool("connectable") if "connectable" in c else False
@ -576,7 +572,6 @@ class Reticulum:
else:
interface.ifac_size = 16
if c["type"] == "SerialInterface":
port = c["port"] if "port" in c else None
speed = int(c["speed"]) if "speed" in c else 9600