1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
package extradhcpopts
// ExtraDHCPOptsExt is a struct that contains different DHCP options for a
// single port.
type ExtraDHCPOptsExt struct {
ExtraDHCPOpts []ExtraDHCPOpt `json:"extra_dhcp_opts"`
}
// ExtraDHCPOpt represents a single set of extra DHCP options for a single port.
type ExtraDHCPOpt struct {
// OptName is the name of a single DHCP option.
OptName string `json:"opt_name"`
// OptValue is the value of a single DHCP option.
OptValue string `json:"opt_value"`
// IPVersion is the IP protocol version of a single DHCP option.
// Valid value is 4 or 6. Default is 4.
IPVersion int `json:"ip_version"`
}
|