From eb1c4f8f6ea20764f3599e38cb6c59429be85755 Mon Sep 17 00:00:00 2001 From: AliveDevil Date: Thu, 30 Nov 2023 15:30:04 +0100 Subject: [PATCH] DHcp6 handler --- src/pdns-dhcp/Kea/KeaDhcp6LeaseHandler.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pdns-dhcp/Kea/KeaDhcp6LeaseHandler.cs b/src/pdns-dhcp/Kea/KeaDhcp6LeaseHandler.cs index 4e7ad1d..b79f0b0 100644 --- a/src/pdns-dhcp/Kea/KeaDhcp6LeaseHandler.cs +++ b/src/pdns-dhcp/Kea/KeaDhcp6LeaseHandler.cs @@ -6,5 +6,6 @@ public class KeaDhcp6LeaseHandler : IKeaDhcpLeaseHandler { public void Handle(in SepReader.Row row) { + KeaDhcp6Lease lease = KeaDhcp6Lease.Parse(row); } }