class Pio::IPv4Header

IPv4 header generator/parser

Public Class Methods

inspect() click to toggle source

rubocop:disable LineLength

# File lib/pio/ipv4_header.rb, line 104
def self.inspect
  'IPv4Header(ip_version: bit4, ip_header_length: bit4, ip_type_of_service: uint8, ip_total_length: uint16, ip_identifier: uint16, ip_flag: bit3, ip_fragment: bit13, ip_ttl: uint8, ip_protocol: uint8, ip_header_checksum: uint16, source_ip_address: ip_address, destination_ip_address: ip_address, ip_option: string)'
end