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_tftp_server_name.go | |
parent | 9492662dae0651fd4d6698d35b58ade7300e149e (diff) |
dhcpv4: remove unused Option.Length function.
Diffstat (limited to 'dhcpv4/option_tftp_server_name.go')
-rw-r--r-- | dhcpv4/option_tftp_server_name.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/dhcpv4/option_tftp_server_name.go b/dhcpv4/option_tftp_server_name.go index 2aa832f..3daa2f5 100644 --- a/dhcpv4/option_tftp_server_name.go +++ b/dhcpv4/option_tftp_server_name.go @@ -22,11 +22,6 @@ func (op *OptTFTPServerName) ToBytes() []byte { return []byte(op.TFTPServerName) } -// Length returns the option length in bytes -func (op *OptTFTPServerName) Length() int { - return len(op.TFTPServerName) -} - func (op *OptTFTPServerName) String() string { return fmt.Sprintf("TFTP Server Name -> %s", op.TFTPServerName) } |