Sha256: 64df00d7aa92833711e3e811ae3afe559e6890793a8779ddf4ff5434f8967892

Contents?: true

Size: 437 Bytes

Versions: 1

Compression:

Stored size: 437 Bytes

Contents

require 'pio/open_flow/nicira_action'
require 'pio/open_flow10/port16'

module Pio
  # NXAST_RESUBMIT action
  class NiciraResubmit < OpenFlow::NiciraAction
    nicira_action_header action_type: 0xffff,
                         action_length: 16,
                         subtype: 1
    port16 :in_port
    string :padding, length: 4
    hide :padding

    def initialize(port_number)
      super(in_port: port_number)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pio-0.30.0 lib/pio/open_flow/nicira_resubmit.rb