Signed-off-by: Alejandro Mery <amery@jpi.io>
This commit is contained in:
2023-09-11 21:42:56 +00:00
parent 85b0766418
commit 5019ef26ad
8 changed files with 483 additions and 1 deletions
+31
View File
@@ -0,0 +1,31 @@
package dns
import (
"context"
"io/fs"
"net/netip"
)
func (mgr *Manager) AddHost(_ context.Context, zone string, id int, active bool, addrs ...netip.Addr) error {
if zone == "" || id <= 0 {
return fs.ErrInvalid
}
z, ok := mgr.zones[zone]
if !ok {
z = &Zone{
Name: zone,
Machines: make(map[int]*Machine),
}
mgr.zones[zone] = z
}
z.Machines[id] = &Machine{
ID: id,
Active: active,
Addrs: addrs,
}
return nil
}