This commit is contained in:
Simon Zolin 2020-05-25 16:32:12 +03:00
parent c7cc4a9345
commit f3dd9ca7aa

View file

@ -178,3 +178,8 @@ func (s *Server) FindMACbyIP(ip net.IP) net.HardwareAddr {
}
return s.srv6.FindMACbyIP(ip)
}
// AddStaticLease - add static v4 lease
func (s *Server) AddStaticLease(lease Lease) error {
return s.srv4.AddStaticLease(lease)
}