Sha256: 80965376558e99fc0083b5b97c332fbbbb16acb1b223628b8e5db53f2bf186ab

Contents?: true

Size: 487 Bytes

Versions: 3

Compression:

Stored size: 487 Bytes

Contents

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

module Pio
  module OpenFlow10
    # 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
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pio-0.29.0 lib/pio/open_flow10/nicira_resubmit.rb
pio-0.28.1 lib/pio/open_flow10/nicira_resubmit.rb
pio-0.28.0 lib/pio/open_flow10/nicira_resubmit.rb