diff options
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 } |