pdns-dhcp/src/pdns-dhcp/Services/IDhcpLeaseWatcherFactory.cs
2023-11-28 18:15:27 +01:00

13 lines
351 B
C#

using pdns_dhcp.Kea;
using pdns_dhcp.Options;
using Stl.Interception;
namespace pdns_dhcp.Services;
public interface IDhcpLeaseWatcherFactory : IRequiresFullProxy
{
KeaDhcpLeaseWatcher<KeaDhcp4LeaseHandler> KeaDhcp4Watcher(KeaDhcpServerOptions options);
KeaDhcpLeaseWatcher<KeaDhcp6LeaseHandler> KeaDhcp6Watcher(KeaDhcpServerOptions options);
}