[Freeswitch-svn] [commit] r10188 - freeswitch/trunk/src/mod/endpoints/mod_sofia

Freeswitch SVN anthm at freeswitch.org
Wed Oct 29 10:43:08 EDT 2008


Author: anthm
Date: Wed Oct 29 10:43:07 2008
New Revision: 10188

Modified:
   freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c

Log:
allow none to not generate an err in vad opts

Modified: freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c
==============================================================================
--- freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c	(original)
+++ freeswitch/trunk/src/mod/endpoints/mod_sofia/sofia.c	Wed Oct 29 10:43:07 2008
@@ -1133,7 +1133,7 @@
 						} else if (!strcasecmp(val, "both")) {
 							switch_set_flag(profile, TFLAG_VAD_IN);
 							switch_set_flag(profile, TFLAG_VAD_OUT);
-						} else {
+						} else if (strcasecmp(val, "none")) {
 							switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid option %s for VAD\n", val);
 						}
 					} else if (!strcasecmp(var, "unregister-on-options-fail")) {
@@ -1494,7 +1494,7 @@
 						} else if (!strcasecmp(val, "both")) {
 							switch_set_flag(profile, TFLAG_VAD_IN);
 							switch_set_flag(profile, TFLAG_VAD_OUT);
-						} else {
+						} else if (strcasecmp(val, "none")) {
 							switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Invalid option %s for VAD\n", val);
 						}
 					} else if (!strcasecmp(var, "ext-rtp-ip")) {



More information about the Freeswitch-svn mailing list