two/internal/dhcp/struct.go
GnomeZworc 2504b435a3
f-28: fix: dhcp do not emit local default route
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
2026-05-18 23:06:29 +02:00

13 lines
163 B
Go

package dhcp
import (
"net"
)
type Config struct {
Network *net.IPNet
Gateway net.IP
DefaultRoute bool
Name string
ConfDir string
}