aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-01-22 16:34:16 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-01-22 16:34:16 +0100
commita310e532438196778b554132d69e78da933aaa81 (patch)
tree8790698cc402eec776862f2c037c04d9e36cae1e /include
parentfbfe8eb81de7900a5241528ca4087be8211bd259 (diff)
vty: Classify the application that we run and provide different options
The VTY interface is used for three different application and not every option will make sense for every app. In the long run we will split the vty interface but for now we just qualify the application.
Diffstat (limited to 'include')
-rw-r--r--include/bsc_data.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/bsc_data.h b/include/bsc_data.h
index 1092d6e..134a5b0 100644
--- a/include/bsc_data.h
+++ b/include/bsc_data.h
@@ -63,7 +63,15 @@ struct mtp_udp_link {
struct llist_head entry;
};
+enum {
+ APP_CELLMGR,
+ APP_RELAY,
+ APP_STP,
+};
+
struct bsc_data {
+ int app;
+
/* MSC */
char *msc_address;
struct write_queue msc_connection;