Changeset 3753 for pjproject/trunk/pjsip/src/pjsip/sip_transaction.c
- Timestamp:
- Sep 18, 2011 2:59:56 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_transaction.c
r3553 r3753 1087 1087 PJ_LOG(5,(tsx->obj_name, "%s timer event", 1088 1088 (entry==&tsx->retransmit_timer ? "Retransmit":"Timeout"))); 1089 pj_log_push_indent(); 1089 1090 1090 1091 … … 1095 1096 (*tsx->state_handler)(tsx, &event); 1096 1097 unlock_tsx(tsx, &lck); 1098 1099 pj_log_pop_indent(); 1097 1100 } 1098 1101 … … 1114 1117 state_str[tsx->state], state_str[state], 1115 1118 pjsip_event_str(event_src_type))); 1119 pj_log_push_indent(); 1116 1120 1117 1121 /* Change state. */ … … 1192 1196 tsx_destroy(tsx); 1193 1197 } 1198 1199 pj_log_pop_indent(); 1194 1200 } 1195 1201 … … 1325 1331 unlock_tsx(tsx, &lck); 1326 1332 1333 pj_log_push_indent(); 1327 1334 PJ_LOG(5,(tsx->obj_name, "Transaction created for %s", 1328 1335 pjsip_tx_data_get_info(tdata))); 1336 pj_log_pop_indent(); 1329 1337 1330 1338 *p_tsx = tsx; … … 1467 1475 unlock_tsx(tsx, &lck); 1468 1476 1469 1477 pj_log_push_indent(); 1470 1478 PJ_LOG(5,(tsx->obj_name, "Transaction created for %s", 1471 1479 pjsip_rx_data_get_info(rdata))); 1480 pj_log_pop_indent(); 1472 1481 1473 1482 … … 1537 1546 return PJ_SUCCESS; 1538 1547 1548 pj_log_push_indent(); 1549 1539 1550 lock_tsx(tsx, &lck); 1540 1551 tsx_set_status_code(tsx, code, NULL); … … 1542 1553 unlock_tsx(tsx, &lck); 1543 1554 1555 pj_log_pop_indent(); 1556 1544 1557 return PJ_SUCCESS; 1545 1558 } … … 1561 1574 1562 1575 PJ_LOG(5,(tsx->obj_name, "Request to stop retransmission")); 1576 1577 pj_log_push_indent(); 1563 1578 1564 1579 lock_tsx(tsx, &lck); … … 1569 1584 } 1570 1585 unlock_tsx(tsx, &lck); 1586 1587 pj_log_pop_indent(); 1571 1588 1572 1589 return PJ_SUCCESS; … … 1641 1658 pjsip_tx_data_get_info(tdata), 1642 1659 state_str[tsx->state])); 1660 pj_log_push_indent(); 1643 1661 1644 1662 PJSIP_EVENT_INIT_TX_MSG(event, tdata); … … 1662 1680 } 1663 1681 1682 pj_log_pop_indent(); 1683 1664 1684 return status; 1665 1685 } … … 1679 1699 PJ_LOG(5,(tsx->obj_name, "Incoming %s in state %s", 1680 1700 pjsip_rx_data_get_info(rdata), state_str[tsx->state])); 1701 pj_log_push_indent(); 1681 1702 1682 1703 /* Put the transaction in the rdata's mod_data. */ … … 1690 1711 status = (*tsx->state_handler)(tsx, &event); 1691 1712 unlock_tsx(tsx, &lck); 1713 1714 pj_log_pop_indent(); 1692 1715 } 1693 1716
Note: See TracChangeset
for help on using the changeset viewer.