Multicast address type modifications

This commit is contained in:
Mark Qvist 2024-05-01 15:49:48 +02:00
parent 34af2e7af7
commit 0b0a3313c5
2 changed files with 16 additions and 3 deletions

View file

@ -137,6 +137,8 @@ class AutoInterface(Interface):
self.multicast_address_type = AutoInterface.MULTICAST_TEMPORARY_ADDRESS_TYPE
elif str(multicast_address_type).lower() == "permanent":
self.multicast_address_type = AutoInterface.MULTICAST_PERMANENT_ADDRESS_TYPE
else:
self.multicast_address_type = AutoInterface.MULTICAST_TEMPORARY_ADDRESS_TYPE
if data_port == None:
self.data_port = AutoInterface.DEFAULT_DATA_PORT