Associates the socket to a local address and port

Returns whether the socket has been be bound.

Property definitions

socket $ TCPServer :: bind
	# Associates the socket to a local address and port
	#
	# Returns whether the socket has been be bound.
	private fun bind: Bool do
		return native.bind(addrin) >= 0
	end
lib/socket/socket.nit:249,2--254,4