blob: 3b6ce70fadb92acb855060750798c7770fe3eb4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
package dhcpv4
// WithUserClass adds a user class option to the packet.
// The rfc parameter allows you to specify if the userclass should be
// rfc compliant or not. More details in issue #113
func WithUserClass(uc []byte, rfc bool) Modifier {
// TODO let the user specify multiple user classes
return func(d *DHCPv4) *DHCPv4 {
ouc := OptUserClass{
UserClasses: [][]byte{uc},
Rfc3004: rfc,
}
d.AddOption(&ouc)
return d
}
}
// WithNetboot adds bootfile URL and bootfile param options to a DHCPv4 packet.
func WithNetboot(d *DHCPv4) *DHCPv4 {
params := d.GetOneOption(OptionParameterRequestList)
var (
OptParams *OptParameterRequestList
foundOptionTFTPServerName bool
foundOptionBootfileName bool
)
if params != nil {
OptParams = params.(*OptParameterRequestList)
for _, option := range OptParams.RequestedOpts {
if option == OptionTFTPServerName {
foundOptionTFTPServerName = true
} else if option == OptionBootfileName {
foundOptionBootfileName = true
}
}
if !foundOptionTFTPServerName {
OptParams.RequestedOpts = append(OptParams.RequestedOpts, OptionTFTPServerName)
}
if !foundOptionBootfileName {
OptParams.RequestedOpts = append(OptParams.RequestedOpts, OptionBootfileName)
}
} else {
OptParams = &OptParameterRequestList{
RequestedOpts: []OptionCode{OptionTFTPServerName, OptionBootfileName},
}
d.AddOption(OptParams)
}
return d
}
|