Sha256: f7618ab9d2272c27eb895bc9e187c97add2b132468f951e4f2e19848b95c6b34
Contents?: true
Size: 1.29 KB
Versions: 21
Compression:
Stored size: 1.29 KB
Contents
require 'pio/icmp/message' require 'pio/icmp/options' require 'pio/mac' module Pio class Icmp # ICMP Reply packet generator class Reply < Message TYPE = 0 public_class_method :new # User options for creating an ICMP Reply. class Options < Pio::Icmp::Options mandatory_option :source_mac mandatory_option :destination_mac mandatory_option :ip_source_address mandatory_option :ip_destination_address mandatory_option :identifier mandatory_option :sequence_number option :echo_data # rubocop:disable MethodLength # rubocop:disable AbcSize def initialize(options) validate options @type = TYPE @source_mac = Mac.new(options[:source_mac]).freeze @destination_mac = Mac.new(options[:destination_mac]).freeze @ip_source_address = IPv4Address.new(options[:ip_source_address]).freeze @ip_destination_address = IPv4Address.new(options[:ip_destination_address]).freeze @identifier = options[:identifier] @sequence_number = options[:sequence_number] @echo_data = options[:echo_data] || '' end # rubocop:enable AbcSize # rubocop:enable MethodLength end end end end
Version data entries
21 entries across 21 versions & 1 rubygems