# File lib/rack/handler/lsws.rb, line 45
45:       def self.send_headers(status, headers)
46:         print "Status: #{status}\r\n"
47:         headers.each { |k, vs|
48:           vs.split("\n").each { |v|
49:             print "#{k}: #{v}\r\n"
50:           }
51:         }
52:         print "\r\n"
53:         STDOUT.flush
54:       end