Bind the socket to a local address

SEE: C documentation for more details on the bind operation

Property definitions

socket $ NativeSocket :: bind
	# Bind the socket to a local address
	#
	# SEE: C documentation for more details on the bind operation
	fun bind(addrIn: NativeSocketAddrIn): Int `{ return bind(*self, (struct sockaddr*)addrIn, sizeof(*addrIn)); `}
lib/socket/socket_c.nit:165,2--168,111