Class: PacketGen::Header::OSPFv2::LSANetwork
- Inherits:
-
LSAHeader
- Object
- Types::Fields
- LSAHeader
- PacketGen::Header::OSPFv2::LSANetwork
- Defined in:
- lib/packetgen/header/ospfv2/lsa.rb
Overview
This class handles LSA Network payloads.
A LSA network payload is composed of:
-
a header (see methods inherited from LSAHeader),
-
an array of router addresses (#routers, IP::ArrayOfAddr).
Constant Summary
Constants inherited from LSAHeader
PacketGen::Header::OSPFv2::LSAHeader::TYPES
Instance Attribute Summary collapse
- #netmask ⇒ IP::Addr
-
#routers ⇒ IP::ArrayOfAddr
List of routers in network.
Attributes inherited from LSAHeader
#advertising_router, #age, #checksum, #dc_opt, #dn_opt, #e_opt, #l_opt, #length, #link_state_id, #mc_opt, #mt_opt, #n_opt, #o_opt, #options, #sequence_number, #type
Method Summary
Methods inherited from LSAHeader
#calc_checksum, #calc_length, #human_type, #to_human, #to_lsa_header
Methods included from Types::Fieldable
#format_inspect, #read, #sz, #to_human, #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
#netmask ⇒ IP::Addr
133 |
# File 'lib/packetgen/header/ospfv2/lsa.rb', line 133 define_field :netmask, IP::Addr |
#routers ⇒ IP::ArrayOfAddr
List of routers in network
137 138 |
# File 'lib/packetgen/header/ospfv2/lsa.rb', line 137 define_field :routers, IP::ArrayOfAddr, builder: ->(h, t) { t.new(length_from: -> { h.length - 24 }) } |