Connect to another open socket

SEE: C documentation for more details on the connect operation

Property definitions

socket $ NativeSocket :: connect
	# Connect to another open socket
	#
	# SEE: C documentation for more details on the `connect` operation
	fun connect(addrIn: NativeSocketAddrIn): Int `{
		return connect(*self, (struct sockaddr*)addrIn, sizeof(*addrIn));
	`}
lib/socket/socket_c.nit:131,2--136,3