Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
markqvist committed Nov 21, 2024
1 parent 996161e commit 7b43ff0
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions RNS/Reticulum.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,14 +446,7 @@ def __apply_config(self):
if "interfaces" in self.config:
for name in self.config["interfaces"]:
if not name in interface_names:
# TODO: We really need to generalise this way of instantiating
# and configuring interfaces. Ideally, interfaces should just
# have a conrfig dict passed to their init method, and return
# a ready interface, onto which this routine can configure any
# generic or extra parameters.

c = self.config["interfaces"][name]

interface_mode = Interface.Interface.MODE_FULL

if "interface_mode" in c:
Expand Down Expand Up @@ -692,7 +685,7 @@ def interface_post_init(interface):

RNS.log("System interfaces are ready", RNS.LOG_VERBOSE)

def _add_interface(self,interface, mode = None, configured_bitrate=None, ifac_size=None, ifac_netname=None, ifac_netkey=None, announce_cap=None, announce_rate_target=None, announce_rate_grace=None, announce_rate_penalty=None):
def _add_interface(self, interface, mode = None, configured_bitrate=None, ifac_size=None, ifac_netname=None, ifac_netkey=None, announce_cap=None, announce_rate_target=None, announce_rate_grace=None, announce_rate_penalty=None):
if not self.is_connected_to_shared_instance:
if interface != None and issubclass(type(interface), RNS.Interfaces.Interface.Interface):

Expand Down

0 comments on commit 7b43ff0

Please sign in to comment.