nat: Create a method to determine if any MSC is connected.

In the future we will have multiple MSC connections so we will
need to figure if any of them is active.
diff --git a/openbsc/src/nat/bsc_nat.c b/openbsc/src/nat/bsc_nat.c
index 7c4a03d..ef3f9a9 100644
--- a/openbsc/src/nat/bsc_nat.c
+++ b/openbsc/src/nat/bsc_nat.c
@@ -883,7 +883,7 @@
 	/*
 	 * if we are not connected to a msc... just close the socket
 	 */
-	if (!nat->msc_con->is_connected) {
+	if (!bsc_nat_msc_is_connected(nat)) {
 		LOGP(DNAT, LOGL_NOTICE, "Disconnecting BSC due lack of MSC connection.\n");
 		close(fd);
 		return 0;