A 9P2000 byte stream.

Methods
R
Constants
PACKING_FLAGS = { 1 => 'C', 2 => 'v', 4 => 'V' }.freeze
 

uchar, ushort, uint32 (all of them little-endian)

Instance Public methods
read_9p(num_bytes)

Unpacks the given number of bytes from this 9P2000 byte stream.

# File lib/rumai/ixp/message.rb, line 37
      def read_9p num_bytes
        read(num_bytes).unpack(PACKING_FLAGS[num_bytes])[0]
      end