Class: Dot11::Raw

Inherits:
Packet show all
Defined in:
lib/dot11/raw.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Packet

#=~, #initialize, new, older_new, #to_filter

Constructor Details

This class inherits a constructor from Dot11::Packet

Instance Attribute Details

#dataObject

Returns the value of attribute data.



5
6
7
# File 'lib/dot11/raw.rb', line 5

def data
  @data
end

Instance Method Details

#to_sObject



7
8
9
10
11
# File 'lib/dot11/raw.rb', line 7

def to_s
  "Raw\n" +
  "------\n" +
  "data: #{data.inspect}\n"
end