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_class_identifier.go | |
parent | 9492662dae0651fd4d6698d35b58ade7300e149e (diff) |
dhcpv4: remove unused Option.Length function.
Diffstat (limited to 'dhcpv4/option_class_identifier.go')
-rw-r--r-- | dhcpv4/option_class_identifier.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/dhcpv4/option_class_identifier.go b/dhcpv4/option_class_identifier.go index 6610df5..23394f0 100644 --- a/dhcpv4/option_class_identifier.go +++ b/dhcpv4/option_class_identifier.go @@ -32,9 +32,3 @@ func (o *OptClassIdentifier) ToBytes() []byte { func (o *OptClassIdentifier) String() string { return fmt.Sprintf("Class Identifier -> %v", o.Identifier) } - -// Length returns the length of the data portion (excluding option code and byte -// for length, if any). -func (o *OptClassIdentifier) Length() int { - return len(o.Identifier) -} |