Changes between Version 31 and Version 32 of FAQ
- Timestamp:
- Feb 12, 2008 12:30:38 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FAQ
v31 v32 629 629 If you have {{{pjsip_rx_data}}} object rather than {{{pjsip_event}}} object, then extracting the SIP message is easier. You can find the SIP messaging elements (the SIP message and shortcuts to important headers) in {{{msg_info}}} field of the {{{pjsip_rx_data}}} object. 630 630 631 === I'm having deadlock in my application. What went wrong? === #sip-deadlock 632 633 You need to acquire mutexes in uniform order. Please see [wiki:PJSUA_Locks Mutex Lock Ordering in PJSUA-LIB] for more information. 631 634 632 635 ----