module Protocol::HTTP2::FlowControlled

def receive_window_update(frame)

def receive_window_update(frame)
	amount = frame.unpack
	
	if amount != 0
		@remote_window.expand(amount)
	else
		raise ProtocolError, "Invalid window size increment: #{amount}!"
	end
end