class Net::SSH::Test::Packet

def initialize(type, *args)

(see #types).
data elements in the order expected for packets of the given +type+
Ceate a new packet of the given +type+, and with +args+ being a list of
def initialize(type, *args)
  @type = self.class.const_get(type.to_s.upcase)
  @data = args
end