aboutsummaryrefslogtreecommitdiffstats
path: root/src/main_stp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main_stp.c')
-rw-r--r--src/main_stp.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/main_stp.c b/src/main_stp.c
index 45a89aa..444e7be 100644
--- a/src/main_stp.c
+++ b/src/main_stp.c
@@ -256,8 +256,11 @@ int main(int argc, char **argv)
bsc.m2ua_set->name = talloc_strdup(bsc.m2ua_set, "M2UA");
/* for both links we want to have all isup messages */
- bsc.m2ua_set->pass_all_isup = 1;
- bsc.link_set->pass_all_isup = 1;
+ if (bsc.isup_pass) {
+ LOGP(DINP, LOGL_NOTICE, "Going to pass through all ISUP messages.\n");
+ bsc.m2ua_set->pass_all_isup = 1;
+ bsc.link_set->pass_all_isup = 1;
+ }
lnk = sctp_m2ua_transp_create("0.0.0.0", 2904);
lnk->base.pcap_fd = -1;