contrib/bsc_control.py: Patch by Holger to handle connection resets
diff --git a/openbsc/contrib/bsc_control.py b/openbsc/contrib/bsc_control.py
index 36c8e45..9dc01e3 100755
--- a/openbsc/contrib/bsc_control.py
+++ b/openbsc/contrib/bsc_control.py
@@ -93,6 +93,10 @@
 if options.monitor:
 	while (True):
 		data = sock.recv(1024)
+		if len(data) == 0:
+			print "Connection is gone."
+			break
+
 		while (len(data)>0):
 			(answer, data) = remove_ipa_ctrl_header(data)
 			print "Got message:", answer