mirror of
https://github.com/danderson/netboot.git
synced 2025-08-07 07:07:17 +02:00
11 lines
272 B
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
|
|
}
|