1
0
Fork 0
netddi/Integrations/Kea/IKeaFactory.cs
2025-01-29 23:53:57 +01:00

12 lines
276 B
C#

using DotNetDDI.Options;
namespace DotNetDDI.Integrations.Kea;
public interface IKeaFactory
{
KeaDhcp4LeaseHandler CreateHandler4();
KeaDhcp6LeaseHandler CreateHandler6();
KeaDhcpLeaseWatcher CreateWatcher(IKeaDhcpLeaseHandler handler, KeaDhcpServerOptions options);
}