Methods
F
T
Class Public methods
from_9p(stream)

Creates a new instance of this class from the given 9P2000 byte stream and returns the instance.

# File lib/rumai/ixp/message.rb, line 707
  def self.from_9p stream
    at stream.read_9p(4)
  end
Instance Public methods
to_9p()

Transforms this object into a string of 9P2000 bytes.

# File lib/rumai/ixp/message.rb, line 699
  def to_9p
    to_i.to_9p(4)
  end