diff options
Diffstat (limited to 'dhcpv4/option_bootfile_name.go')
-rw-r--r-- | dhcpv4/option_bootfile_name.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/dhcpv4/option_bootfile_name.go b/dhcpv4/option_bootfile_name.go index 9e55bc3..da0d873 100644 --- a/dhcpv4/option_bootfile_name.go +++ b/dhcpv4/option_bootfile_name.go @@ -4,10 +4,8 @@ import ( "fmt" ) -// This option implements the Bootfile name Option. -// https://tools.ietf.org/html/rfc2132 - -// OptBootfileName implements the BootFile Name option +// OptBootfileName implements the bootfile name option described in RFC 2132, +// Section 9.5. type OptBootfileName struct { BootfileName string } |