diff options
Diffstat (limited to 'dhcpv4/option_class_identifier.go')
-rw-r--r-- | dhcpv4/option_class_identifier.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/dhcpv4/option_class_identifier.go b/dhcpv4/option_class_identifier.go index 23394f0..286cb59 100644 --- a/dhcpv4/option_class_identifier.go +++ b/dhcpv4/option_class_identifier.go @@ -4,10 +4,8 @@ import ( "fmt" ) -// This option implements the Class Identifier option -// https://tools.ietf.org/html/rfc2132 - -// OptClassIdentifier represents the DHCP message type option. +// OptClassIdentifier implements the vendor class identifier option described +// in RFC 2132, Section 9.13. type OptClassIdentifier struct { Identifier string } |