# File lib/mongrel/http_response.rb, line 42 def initialize(socket) @socket = socket @body = StringIO.new @status = 404 @reason = nil @header = HeaderOut.new(StringIO.new) @header[Const::DATE] = Time.now.httpdate @body_sent = false @header_sent = false @status_sent = false end