class Pio::OpenFlow13::PacketOut

OpenFlow 1.3 PacketOut message parser and generator

Public Instance Methods

data() click to toggle source
# File lib/pio/open_flow13/packet_out.rb, line 39
def data
  @data ||= Pio::Parser.read(raw_data)
end
method_missing(method, *args) click to toggle source
# File lib/pio/open_flow13/packet_out.rb, line 43
def method_missing(method, *args)
  bindata_value = data.__send__(method, *args)
  bindata_value.try(:snapshot) || bindata_value
end