From: Brian West Date: Tue, 10 Aug 2010 14:19:51 +0000 (-0500) Subject: comment out VendorInfo for the sake of interop for now X-Git-Tag: v1.2-rc1~526^2~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa28b633db67018a1eef48676c51420258ff7038;p=thirdparty%2Ffreeswitch.git comment out VendorInfo for the sake of interop for now --- diff --git a/src/mod/endpoints/mod_sofia/sofia_glue.c b/src/mod/endpoints/mod_sofia/sofia_glue.c index a81636669b..049859d46a 100644 --- a/src/mod/endpoints/mod_sofia/sofia_glue.c +++ b/src/mod/endpoints/mod_sofia/sofia_glue.c @@ -100,8 +100,8 @@ void sofia_glue_set_image_sdp(private_object_t *tech_pvt, switch_t38_options_t * "a=T38FaxRateManagement:%s\n" "a=T38FaxMaxBuffer:%d\n" "a=T38FaxMaxDatagram:%d\n" - "a=T38FaxUdpEC:%s\n" - "a=T38VendorInfo:%s\n", + "a=T38FaxUdpEC:%s\n", + //"a=T38VendorInfo:%s\n", port, t38_options->T38FaxVersion, t38_options->T38MaxBitRate, @@ -110,7 +110,9 @@ void sofia_glue_set_image_sdp(private_object_t *tech_pvt, switch_t38_options_t * t38_options->T38FaxTranscodingJBIG ? "a=T38FaxTranscodingJBIG\n" : "", t38_options->T38FaxRateManagement, t38_options->T38FaxMaxBuffer, - t38_options->T38FaxMaxDatagram, t38_options->T38FaxUdpEC, t38_options->T38VendorInfo ? t38_options->T38VendorInfo : "0 0 0"); + t38_options->T38FaxMaxDatagram, t38_options->T38FaxUdpEC + //t38_options->T38VendorInfo ? t38_options->T38VendorInfo : "0 0 0" + );