aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-01-16 09:54:09 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-01-16 09:54:09 +0100
commita59af64126954aceec09559c117c2641291bcc33 (patch)
treeeb179a2590659da2f3214d24bc5b842d450c4555
parentf3e9ad01c1393d6db5bcb1dcaf3f433e7f50aec1 (diff)
ss7: Make the forwarding methods static
-rw-r--r--src/ss7_application.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ss7_application.c b/src/ss7_application.c
index 9d34752..701ec04 100644
--- a/src/ss7_application.c
+++ b/src/ss7_application.c
@@ -32,7 +32,7 @@
/* the SS7 dispatch... maybe as function pointers in the future */
-void forward_sccp_stp(struct mtp_link_set *set, struct msgb *_msg, int sls)
+static void forward_sccp_stp(struct mtp_link_set *set, struct msgb *_msg, int sls)
{
struct mtp_link_set *other;
other = set->app->route_src.set == set ?
@@ -40,7 +40,7 @@ void forward_sccp_stp(struct mtp_link_set *set, struct msgb *_msg, int sls)
mtp_link_set_submit_sccp_data(other, sls, _msg->l2h, msgb_l2len(_msg));
}
-void forward_isup_stp(struct mtp_link_set *set, struct msgb *msg, int sls)
+static void forward_isup_stp(struct mtp_link_set *set, struct msgb *msg, int sls)
{
struct mtp_link_set *other;
other = set->app->route_src.set == set ?