# File lib/evma_httpserver/response.rb, line 107 107: def send_headers 108: raise "sent headers already" if @sent_headers 109: @sent_headers = true 110: 111: fixup_headers 112: 113: ary = [] 114: ary << "HTTP/1.1 #{@status || 200} ...\r\n" 115: ary += generate_header_lines(@headers) 116: ary << "\r\n" 117: 118: send_data ary.join 119: end