From 46896003ab7b16f334cef1ae1774e17e32a966af Mon Sep 17 00:00:00 2001 From: Brian West Date: Sun, 20 Sep 2009 20:14:41 +0000 Subject: [PATCH] MODAPP-338 git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14927 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/mod/applications/mod_esf/mod_esf.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/src/mod/applications/mod_esf/mod_esf.c b/src/mod/applications/mod_esf/mod_esf.c index 51a2366ffb..431a806556 100644 --- a/src/mod/applications/mod_esf/mod_esf.c +++ b/src/mod/applications/mod_esf/mod_esf.c @@ -80,7 +80,7 @@ SWITCH_STANDARD_APP(bcast_function) const char *esf_broadcast_ip = NULL, *var; switch_codec_implementation_t read_impl = {0}; switch_core_session_get_read_impl(session, &read_impl); - + int mcast_ttl = 1; if (!switch_strlen_zero((char *) data)) { mydata = switch_core_session_strdup(session, data); @@ -104,6 +104,13 @@ SWITCH_STANDARD_APP(bcast_function) if (!switch_strlen_zero(argv[2])) { mcast_control_port = (switch_port_t) atoi(argv[2]); } + + if (!switch_strlen_zero(argv[3])) { + mcast_ttl = atoi(argv[3]); + if (mcast_ttl < 1 || mcast_ttl > 255) { + mcast_ttl = 1; + } + } } if (switch_true(switch_channel_get_variable(channel, SWITCH_BYPASS_MEDIA_VARIABLE))) { @@ -128,6 +135,11 @@ SWITCH_STANDARD_APP(bcast_function) goto fail; } + if (switch_mcast_hops(socket, mcast_ttl) != SWITCH_STATUS_SUCCESS) { + switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "Mutlicast TTL set failed\n"); + goto fail; + } + if (switch_sockaddr_info_get(&control_packet_addr, mcast_ip, SWITCH_UNSPEC, mcast_control_port, 0, switch_core_session_get_pool(session)) != SWITCH_STATUS_SUCCESS) { switch_log_printf(SWITCH_CHANNEL_SESSION_LOG(session), SWITCH_LOG_ERROR, "Socket Error 3\n");