Sha256: 1eee8b2a85a78f213ec1e5b179cc6f3a6bb7d36da3be212f975420649a44ba77

Contents?: true

Size: 516 Bytes

Versions: 5

Compression:

Stored size: 516 Bytes

Contents

require 'pio/open_flow/hello_failed_code'
require 'pio/open_flow/message'
require 'pio/open_flow10/error/error_type10'

module Pio
  module OpenFlow10
    module Error
      # Hello failed error.
      class HelloFailed < OpenFlow::Message
        open_flow_header version: 1,
                         message_type: 1,
                         message_length: -> { 12 + description.length }
        error_type10 :error_type
        hello_failed_code :error_code
        rest :description
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pio-0.30.0 lib/pio/open_flow10/error/hello_failed.rb
pio-0.29.0 lib/pio/open_flow10/error/hello_failed.rb
pio-0.28.1 lib/pio/open_flow10/error/hello_failed.rb
pio-0.28.0 lib/pio/open_flow10/error/hello_failed.rb
pio-0.27.2 lib/pio/open_flow10/error/hello_failed.rb