# File lib/teamspeak-ruby/client.rb, line 32
    def initialize(host = 'localhost', port = 10_011)
      connect(host, port)

      # Throttle commands by default unless connected to localhost
      @flood_protection = true unless host
      @flood_limit = 10
      @flood_time = 3

      @flood_timer = Time.new
      @flood_current = 0
    end