From: Anthony Minessale Date: Wed, 25 Jun 2014 16:18:04 +0000 (+0500) Subject: duh, the code to parse the codec params from the config file wasn't there X-Git-Tag: v1.5.13~99 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=062b7c6e3d6d2b2ecefe594a967fe626e98f3062;p=thirdparty%2Ffreeswitch.git duh, the code to parse the codec params from the config file wasn't there --- diff --git a/src/mod/endpoints/mod_verto/mod_verto.c b/src/mod/endpoints/mod_verto/mod_verto.c index 0bf914df8c..f7be1c1163 100644 --- a/src/mod/endpoints/mod_verto/mod_verto.c +++ b/src/mod/endpoints/mod_verto/mod_verto.c @@ -3446,6 +3446,10 @@ static switch_status_t parse_config(const char *cf) set_string(profile->key, val); } else if (!strcasecmp(var, "secure-chain")) { set_string(profile->chain, val); + } else if (!strcasecmp(var, "inbound-codec-string") && !zstr(val)) { + profile->inbound_codec_string = switch_core_strdup(profile->pool, val); + } else if (!strcasecmp(var, "outbound-codec-string") && !zstr(val)) { + profile->outbound_codec_string = switch_core_strdup(profile->pool, val); } else if (!strcasecmp(var, "userauth") && !zstr(val)) { profile->userauth = switch_core_strdup(profile->pool, val); } else if (!strcasecmp(var, "root-password") && !zstr(val)) {