class Protocol::HTTP2::Settings

def enable_connect_protocol= value

def enable_connect_protocol= value
	if value == 0 or value == 1
		@enable_connect_protocol = value
	else
		raise ProtocolError, "Invalid value for enable_connect_protocol: #{value}"
	end
end