class Terminalwire::Transport::Unix

def write(data)

def write(data)
  length = [data.bytesize].pack('L>')
  @socket.write(length + data)
end