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_root_path.go | |
parent | 81af01ddbffafdc6904a8092cba3adf92008c715 (diff) |
dhcpv4: thoroughly fix type docs. Refer to RFCs.
Diffstat (limited to 'dhcpv4/option_root_path.go')
-rw-r--r-- | dhcpv4/option_root_path.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/dhcpv4/option_root_path.go b/dhcpv4/option_root_path.go index 84e392e..66a55a7 100644 --- a/dhcpv4/option_root_path.go +++ b/dhcpv4/option_root_path.go @@ -4,10 +4,8 @@ import ( "fmt" ) -// This option implements the root path option -// https://tools.ietf.org/html/rfc2132 - -// OptRootPath represents the path to the client's root disk. +// OptRootPath implements the root path option described by RFC 2132, Section +// 3.19. type OptRootPath struct { Path string } |