Re: [Sofia-sip-devel] Segmentation Fault After BYE 407 Proxy Authentication

2011-06-22 Thread Jerry Richards
Okay, I found the problem. This looks like a sofia-sip bug. I made a one line change to nua_invite_client_ack() function in libsofia-sip-ua/nua/nua_session.c, as follows: OLD: assert(cr->cr_method == sip_method_invite); NEW: assert((cr->cr_method == sip_method_invite) || (cr->cr_method == sip

[Sofia-sip-devel] How to remove Supported header from outgoing request.

2011-06-22 Thread Inca Rose
Hi; I'm using NUA and I see that by default the Supported header is sent with "timer, 100rel" I want to control the supported header contents and find out that NUATAG_SUPPORTED only adds supported values, and only SIPTAG_SUPPORTED can override it. I want to be able to not send Supported headers