class Protocol::HTTP2::LocalWindow

def wanted

def wanted
	if @desired
		# We must send an update which allows at least @desired bytes to be sent.
		(@desired - @capacity) + @used
	else
		@used
	end
end