13 lines
276 B
C#
13 lines
276 B
C#
|
|
using DotNetDDI.Options;
|
||
|
|
|
||
|
|
namespace DotNetDDI.Integrations.Kea;
|
||
|
|
|
||
|
|
public interface IKeaFactory
|
||
|
|
{
|
||
|
|
KeaDhcp4LeaseHandler CreateHandler4();
|
||
|
|
|
||
|
|
KeaDhcp6LeaseHandler CreateHandler6();
|
||
|
|
|
||
|
|
KeaDhcpLeaseWatcher CreateWatcher(IKeaDhcpLeaseHandler handler, KeaDhcpServerOptions options);
|
||
|
|
}
|