Changeset 612 for pjproject/trunk/pjsip/src/pjsip/sip_dialog.c
- Timestamp:
- Jul 18, 2006 2:39:40 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_dialog.c
r576 r612 1345 1345 const pj_str_t reason = { "No session found", 16}; 1346 1346 1347 PJ_LOG(4,(tsx->obj_name, "Incoming request was unhandled by " 1348 "dialog usages, sending 500 response")); 1347 PJ_LOG(4,(tsx->obj_name, "%s was unhandled by " 1348 "dialog usages, sending 500 response", 1349 pjsip_rx_data_get_info(rdata))); 1349 1350 1350 1351 status = pjsip_dlg_create_response(dlg, rdata, 500, &reason, &tdata); … … 1458 1459 } 1459 1460 1461 /* Unhandled response does not necessarily mean error because 1462 dialog usages may choose to process the transaction state instead. 1460 1463 if (i==dlg->usage_cnt) { 1461 PJ_LOG(4,(dlg->obj_name, "%s is unhandled by dialog usages",1464 PJ_LOG(4,(dlg->obj_name, "%s was not claimed by any dialog usages", 1462 1465 pjsip_rx_data_get_info(rdata))); 1463 1466 } 1467 */ 1464 1468 1465 1469 /* Unlock dialog and dec session, may destroy dialog. */
Note: See TracChangeset
for help on using the changeset viewer.