Fix interface values not being set on RNodeSubInterface instances

This commit is contained in:
jacob.eva 2024-09-20 17:50:34 +01:00
parent c71ece6b8e
commit 9a97195b8c
No known key found for this signature in database
GPG key ID: 0B92E083BBCCAA1E
2 changed files with 19 additions and 7 deletions

View file

@ -249,6 +249,7 @@ class RNodeMultiInterface(Interface):
if (not self.validcfg):
raise ValueError("The configuration for "+str(self)+" contains errors, interface is offline")
def start(self):
try:
self.open_port()
@ -323,8 +324,8 @@ class RNodeMultiInterface(Interface):
lt_alock=subint[9]
)
interface.OUT = self.OUT
interface.IN = self.IN
interface.OUT = subint[10]
interface.IN = True
interface.announce_rate_target = self.announce_rate_target
interface.mode = self.mode
@ -1006,6 +1007,11 @@ class RNodeSubInterface(Interface):
self.parent_interface = parent_interface
self.announce_rate_target = None
self.mode = None
self.announce_cap = None
self.bitrate = None
self.ifac_size = None
# add this interface to the subinterfaces array
self.parent_interface.subinterfaces[index] = self