# File lib/adhearsion/voip/freeswitch/basic_connection_manager.rb, line 20
        def get_raw_header
          (returning [] do |lines|
            until line = @io.gets and line.chomp.empty?
              lines << line.chomp
            end
          end) * "\n"
        end