Class: PacketGen::Header::Eth::MacAddr
- Inherits:
-
Types::Fields
- Object
- Types::Fields
- PacketGen::Header::Eth::MacAddr
- Includes:
- Types::Fieldable
- Defined in:
- lib/packetgen/header/eth.rb
Overview
Ethernet MAC address, as a group of 6 bytes
Instance Attribute Summary collapse
-
#a0 ⇒ Integer
First byte from MacAddr.
-
#a1 ⇒ Integer
Second byte from MacAddr.
-
#a2 ⇒ Integer
Third byte from MacAddr.
-
#a3 ⇒ Integer
Fourth byte from MacAddr.
-
#a4 ⇒ Integer
Fifth byte from MacAddr.
-
#a5 ⇒ Integer
Sixth byte from MacAddr.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#from_human(str) ⇒ self
Read a human-readable string to populate
MacAddr
. -
#to_human ⇒ String
MacAddr
in human readable form (colon format).
Methods included from Types::Fieldable
#format_inspect, #read, #sz, #to_s, #type_name
Methods inherited from Types::Fields
#[], #[]=, #bits_on, define_bit_fields_on, define_field, define_field_after, define_field_before, #fields, fields, inherited, #initialize, #inspect, #offset_of, #optional?, #optional_fields, #present?, #read, remove_bit_fields_on, remove_field, #sz, #to_h, #to_s, update_field
Constructor Details
This class inherits a constructor from PacketGen::Types::Fields
Instance Attribute Details
#a0 ⇒ Integer
Returns first byte from MacAddr.
41 |
# File 'lib/packetgen/header/eth.rb', line 41 define_field :a0, Types::Int8 |
#a1 ⇒ Integer
Returns second byte from MacAddr.
44 |
# File 'lib/packetgen/header/eth.rb', line 44 define_field :a1, Types::Int8 |
#a2 ⇒ Integer
Returns third byte from MacAddr.
47 |
# File 'lib/packetgen/header/eth.rb', line 47 define_field :a2, Types::Int8 |
#a3 ⇒ Integer
Returns fourth byte from MacAddr.
50 |
# File 'lib/packetgen/header/eth.rb', line 50 define_field :a3, Types::Int8 |
Instance Method Details
#==(other) ⇒ Object
79 80 81 82 |
# File 'lib/packetgen/header/eth.rb', line 79 def ==(other) other.is_a?(self.class) && fields.all? { |attr| self[attr].value == other[attr].value } end |
#from_human(str) ⇒ self
Read a human-readable string to populate MacAddr
61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/packetgen/header/eth.rb', line 61 def from_human(str) return self if str.nil? bytes = str.split(':') raise ArgumentError, 'not a MAC address' unless bytes.size == 6 6.times do |i| self[:"a#{i}"].read(bytes[i].to_i(16)) end self end |
#to_human ⇒ String
MacAddr
in human readable form (colon format)
75 76 77 |
# File 'lib/packetgen/header/eth.rb', line 75 def to_human fields.map { |m| '%02x' % self[m] }.join(':') end |