# File lib/bunny/client08.rb, line 99
    def create_channel
      channels.each do |c|
        return c if (!c.open? and c.number != 0)
      end
      # If no channel to re-use instantiate new one
      Bunny::Channel.new(self)
    end