global

def write_response(version, status, headers, reason = nil)

def write_response(version, status, headers, reason = nil)
	attributes = {
		version: version,
		status: status,
		headers: headers&.to_h,
	}
	
	Traces.trace("protocol.http1.connection.write_response", attributes: attributes) do
		super
	end
end