Is this connection connected?

Property definitions

gamnit $ RemoteServer :: connected
	# Is this connection connected?
	fun connected: Bool
	do
		var socket = socket
		return socket != null and socket.connected
	end
lib/gamnit/network/client.nit:64,2--69,4