diff options
author | Christopher Koch <chrisko@google.com> | 2019-01-10 18:08:11 -0800 |
---|---|---|
committer | insomniac <insomniacslk@users.noreply.github.com> | 2019-01-14 23:19:04 +0000 |
commit | a87dfc0a868f7e98cb2099100fd3c18e8c054d62 (patch) | |
tree | 7130ff46f1e03bea014707e88fcd4c3fd4310970 /dhcpv4/option_server_identifier.go | |
parent | 81af01ddbffafdc6904a8092cba3adf92008c715 (diff) |
dhcpv4: thoroughly fix type docs. Refer to RFCs.
Diffstat (limited to 'dhcpv4/option_server_identifier.go')
-rw-r--r-- | dhcpv4/option_server_identifier.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/dhcpv4/option_server_identifier.go b/dhcpv4/option_server_identifier.go index cc5e1a5..6fc09a9 100644 --- a/dhcpv4/option_server_identifier.go +++ b/dhcpv4/option_server_identifier.go @@ -7,10 +7,8 @@ import ( "github.com/u-root/u-root/pkg/uio" ) -// OptServerIdentifier represents an option encapsulating the server identifier. -// -// This option implements the server identifier option -// https://tools.ietf.org/html/rfc2132 +// OptServerIdentifier implements the server identifier option described by RFC +// 2132, Section 9.7. type OptServerIdentifier struct { ServerID net.IP } |