# File firewall/lib/symbiosis/firewall/blacklist_db.rb, line 21
      def set_count_for(ip, cnt, timestamp = Time.now)
        @dbh.execute("INSERT INTO #{@tbl_name}
          VALUES (?, ?, ?)",
          [ip.to_s, timestamp.to_i, cnt]
        )

        @count = cnt
      end