class Protocol::Rack::Input

def close(error = nil)

Close the input and output bodies.
def close(error = nil)
	@closed = true
	
	if @body
		@body.close(error)
		@body = nil
	end
	
	return nil
end