#3062 - Discriminator bugfixes

This commit is contained in:
Marek Wolan
2025-02-03 16:29:27 +00:00
parent abccf4afc5
commit a310fb3b64
3 changed files with 3 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ class ARP(Service, discriminator="arp"):
arp: Dict[IPV4Address, ARPEntry] = {}
def __init__(self, **kwargs):
kwargs["name"] = "ARP"
kwargs["name"] = "arp"
kwargs["port"] = PORT_LOOKUP["ARP"]
kwargs["protocol"] = PROTOCOL_LOOKUP["UDP"]
super().__init__(**kwargs)