Sha256: adbf20d2176f623b89fe40cbda81b3e7475f85375020f40c777522317cc2c87e

Contents?: true

Size: 496 Bytes

Versions: 1

Compression:

Stored size: 496 Bytes

Contents

require 'pio/open_flow/nicira_action'

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

      def initialize(port_number)
        super(in_port: port_number)
      end
    end
  end
  NiciraResubmit = OpenFlow::NiciraResubmit
end

Version data entries

1 entries across 1 versions & 1 rubygems

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