netboot/dhcp6/boot_configuration.go

11 lines
272 B
Go

package dhcp6
import "net"
// BootConfiguration implementation provides values for dhcp options served to dhcp clients
type BootConfiguration interface {
GetBootURL(id []byte, clientArchType uint16) ([]byte, error)
GetPreference() []byte
GetRecursiveDNS() []net.IP
}