Class: PacketGen::Header::DHCPv6::DUID_EN
- Defined in:
- lib/packetgen/header/dhcpv6/duid.rb
Overview
DUID Based on Enterprise Number
Constant Summary
Constants inherited from DUID
PacketGen::Header::DHCPv6::DUID::TYPES
Instance Attribute Summary collapse
-
#en ⇒ Integer
32-bit entreprise number.
- #identifier ⇒ String
Attributes inherited from DUID
Instance Method Summary collapse
-
#to_human ⇒ String
Get human-readable DUID description.
Methods inherited from DUID
Instance Attribute Details
permalink #en ⇒ Integer
32-bit entreprise number
120 |
# File 'lib/packetgen/header/dhcpv6/duid.rb', line 120 define_attr :en, BinStruct::Int32 |
permalink #identifier ⇒ String
123 |
# File 'lib/packetgen/header/dhcpv6/duid.rb', line 123 define_attr :identifier, BinStruct::String |
Instance Method Details
permalink #to_human ⇒ String
Get human-readable DUID description
127 128 129 |
# File 'lib/packetgen/header/dhcpv6/duid.rb', line 127 def to_human 'DUID_EN<%#x,%s>' % [en, identifier] end |