Class: PacketGen::Header::OSPFv2::LSA

Inherits:
LSAHeader
  • Object
show all
Defined in:
lib/packetgen/header/ospfv2/lsa.rb

Overview

This class handles unsupported OSPFv2 LSA payloads. A LSA payload is a LSAHeader with a #body field.

Since:

  • 2.5.0

Constant Summary

Constants inherited from LSAHeader

PacketGen::Header::OSPFv2::LSAHeader::TYPES

Instance Attribute Summary collapse

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

Instance Attribute Details

#bodyString

LSA body

Returns:

  • (String)


19
20
# File 'lib/packetgen/header/ospfv2/lsa.rb', line 19

define_attr :body, BinStruct::String,
builder: ->(h, t) { t.new(length_from: -> { h.length - 20 }) }