Sha256: 0fcb9850b0f09dc8249b8e84eeab50d93079231d68d4bef9cbaaba19c6e3a6ec
Contents?: true
Size: 390 Bytes
Versions: 5
Compression:
Stored size: 390 Bytes
Contents
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
5 entries across 5 versions & 1 rubygems