aboutsummaryrefslogtreecommitdiffstats
path: root/src/main_stp.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2011-02-15 20:01:47 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2011-02-17 19:34:27 +0100
commit84ec8714b21a766471129282b98a8bcbfef799f0 (patch)
tree685957259921822b00a661bad164e8e5e1e35a3e /src/main_stp.c
parentf7ce2c6417b2cda3b0672d84f1ac9085c6f86f3a (diff)
msc: Move the MSC Connection into a new header file
This is in preparation of splitting the MSC part and the nat logic for the upcoming config rewriting.
Diffstat (limited to 'src/main_stp.c')
-rw-r--r--src/main_stp.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main_stp.c b/src/main_stp.c
index 203ce12..95007f6 100644
--- a/src/main_stp.c
+++ b/src/main_stp.c
@@ -393,8 +393,12 @@ int main(int argc, char **argv)
}
/* dummy for links */
-int msc_init(struct bsc_msc_forward *data, int dummy)
+int msc_connection_start(struct msc_connection *conn)
{
return 0;
}
+struct msc_connection *msc_connection_num(struct bsc_data *bsc, int num)
+{
+ return NULL;
+}