Set whether calls to accept are blocking

Property definitions

socket $ Socket :: blocking=
	# Set whether calls to `accept` are blocking
	fun blocking=(value: Bool)
	do
		# We use the opposite from the native version as the native API
		# is closer to the C API. In the Nity API, we use a positive version
		# of the name.
		native.non_blocking = not value
	end
lib/socket/socket.nit:32,2--39,4