From c8c94f051b8ff55e057f3506ac5abb23894f9474 Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Fri, 19 Aug 2011 11:52:40 -0500 Subject: [PATCH] default 2833 payload type to 101 when not configured otherwise --- src/mod/endpoints/mod_sofia/sofia.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mod/endpoints/mod_sofia/sofia.c b/src/mod/endpoints/mod_sofia/sofia.c index 2e2aacf9d0..6b119b62d1 100644 --- a/src/mod/endpoints/mod_sofia/sofia.c +++ b/src/mod/endpoints/mod_sofia/sofia.c @@ -3509,6 +3509,7 @@ switch_status_t config_sofia(int reload, char *profile_name) sofia_set_flag(profile, TFLAG_ENABLE_SOA); sofia_set_pflag(profile, PFLAG_CID_IN_1XX); profile->ndlb |= PFLAG_NDLB_ALLOW_NONDUP_SDP; + profile->te = 101; for (param = switch_xml_child(settings, "param"); param; param = param->next) { char *var = (char *) switch_xml_attr_soft(param, "name");