require 'socket' s = TCPSocket.new '193.168.50.86', 2323 puts s.gets s.puts ["USER alice\n"].pack('m') p s.gets.unpack('m').first s.puts ["ALEA\n"].pack('m') p s.gets.unpack('m').first s.shutdown s.close