diff options
author | Christopher Koch <chrisko@google.com> | 2018-12-29 12:21:34 -0800 |
---|---|---|
committer | insomniac <insomniacslk@users.noreply.github.com> | 2019-01-11 19:38:21 +0000 |
commit | 03a987ca7475df51eb9164e807f9c1929017e08a (patch) | |
tree | ec594d8874670e314f9f355e030f8e633849e9d9 /dhcpv4/option_bootfile_name.go | |
parent | 9492662dae0651fd4d6698d35b58ade7300e149e (diff) |
dhcpv4: remove unused Option.Length function.
Diffstat (limited to 'dhcpv4/option_bootfile_name.go')
-rw-r--r-- | dhcpv4/option_bootfile_name.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/dhcpv4/option_bootfile_name.go b/dhcpv4/option_bootfile_name.go index b0b8464..9e55bc3 100644 --- a/dhcpv4/option_bootfile_name.go +++ b/dhcpv4/option_bootfile_name.go @@ -22,14 +22,8 @@ func (op *OptBootfileName) ToBytes() []byte { return []byte(op.BootfileName) } -// Length returns the option length in bytes -func (op *OptBootfileName) Length() int { - return len(op.BootfileName) -} - func (op *OptBootfileName) String() string { return fmt.Sprintf("Bootfile Name -> %s", op.BootfileName) - } // ParseOptBootfileName returns a new OptBootfile from a byte stream or error if any |