vty: Remove more globals from the bsc data.

This is a interim solution until we have the new and all mighty
new config file format. This should work for now, makes the init
abit harder to understand though.
diff --git a/include/ss7_application.h b/include/ss7_application.h
index 51426b5..66ddd87 100644
--- a/include/ss7_application.h
+++ b/include/ss7_application.h
@@ -64,6 +64,9 @@
 
 	struct bsc_data *bsc;
 
+	/* isup handling */
+	int isup_pass;
+
 	/* handling for the NAT/State handling */
 	struct llist_head sccp_connections;
 	struct timer_list reset_timeout;
@@ -81,4 +84,7 @@
 
 int ss7_application_start(struct ss7_application *);
 
+/* config changes */
+void ss7_application_pass_isup(struct ss7_application *, int pass);
+
 #endif