# File lib/rack/handler/fastcgi.rb, line 70 70: def self.send_headers(out, status, headers) 71: out.print "Status: #{status}\r\n" 72: headers.each { |k, vs| 73: vs.split("\n").each { |v| 74: out.print "#{k}: #{v}\r\n" 75: } 76: } 77: out.print "\r\n" 78: out.flush 79: end