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