Sha256: 7195f5e21afbe01d18f48f96a0263fe8696441dd9fb2714236ca617c69110ea5
Contents?: true
Size: 421 Bytes
Versions: 1
Compression:
Stored size: 421 Bytes
Contents
# frozen_string_literal: true require 'pio/open_flow/action' require 'pio/type/ip_address' module Pio module OpenFlow10 # An action to modify the IPv4 source address of a packet. class SetDestinationIpAddress < OpenFlow::Action action_header action_type: 7, action_length: 8 ip_address :ip_address def initialize(ip_address) super ip_address: ip_address end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pio-0.30.2 | lib/pio/open_flow10/set_destination_ip_address.rb |