module PhusionPassenger::ClassicRails::ThreadHandlerExtension

def process_request(env, connection, socket_wrapper, full_http_response)

def process_request(env, connection, socket_wrapper, full_http_response)
	cgi = CGIFixed.new(env, connection, connection)
	::Dispatcher.dispatch(cgi,
		::ActionController::CgiRequest::DEFAULT_SESSION_OPTIONS,
		cgi.stdoutput)
	return false # Socket hijacking not supported.
end