Sha256: 9e9558409059fcf03bf20daef54ab610029e6f446bfce35b9d8be9d9d53376d2

Contents?: true

Size: 523 Bytes

Versions: 5

Compression:

Stored size: 523 Bytes

Contents

require 'pio/open_flow10/stats_type'

module Pio
  module OpenFlow10
    # Aggregate Stats messages
    module AggregateStats
      # Aggregate Stats Reply message
      class Reply < OpenFlow::Message
        open_flow_header version: 1, message_type: 17, message_length: 32
        stats_type :stats_type, value: -> { :aggregate }
        uint16 :flags
        uint64 :packet_count
        uint64 :byte_count
        uint32 :flow_count
        string :padding, length: 4
        hide :padding
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pio-0.30.0 lib/pio/open_flow10/aggregate_stats/reply.rb
pio-0.29.0 lib/pio/open_flow10/aggregate_stats/reply.rb
pio-0.28.1 lib/pio/open_flow10/aggregate_stats/reply.rb
pio-0.28.0 lib/pio/open_flow10/aggregate_stats/reply.rb
pio-0.27.2 lib/pio/open_flow10/aggregate_stats/reply.rb