Changeset 988
- Timestamp:
- Feb 20, 2007 6:47:12 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/pjproject-0.5-stable/pjsip/src/pjsip/sip_ua_layer.c
r974 r988 806 806 * Application can either create a dialog or ignore the response. 807 807 */ 808 if (mod_ua.param.on_dlg_forked) 808 if (mod_ua.param.on_dlg_forked) { 809 809 dlg = (*mod_ua.param.on_dlg_forked)(dlg_set->dlg_list.next, 810 810 rdata); 811 else 812 dlg = NULL; 813 814 /* Ignore this response if application doesn't want to 815 * create a dialog. 816 */ 817 if (dlg == NULL) { 818 pj_mutex_unlock(mod_ua.mutex); 811 } else { 812 dlg = dlg_set->dlg_list.next; 819 813 820 814 PJ_LOG(4,(THIS_FILE, 821 "Unhandled forked %s from %s:%d", 815 "Unhandled forked %s from %s:%d, response will be " 816 "handed over to the first dialog", 822 817 pjsip_rx_data_get_info(rdata), 823 818 rdata->pkt_info.src_name, rdata->pkt_info.src_port)); 824 825 return PJ_TRUE;826 819 } 827 820
Note: See TracChangeset
for help on using the changeset viewer.