Changeset 662
- Timestamp:
- Aug 8, 2006 12:41:00 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip-ua/sip_reg.c
r476 r662 599 599 /* Make sure we don't have pending transaction. */ 600 600 if (regc->pending_tsx) { 601 PJ_LOG(4,(THIS_FILE, "Unable to send request, regc has another " 602 "transaction pending")); 601 603 pjsip_tx_data_dec_ref( tdata ); 602 604 return PJSIP_EBUSY; … … 616 618 ++regc->pending_tsx; 617 619 status = pjsip_endpt_send_request(regc->endpt, tdata, -1, regc, &tsx_callback); 618 if (status!=PJ_SUCCESS) 620 if (status!=PJ_SUCCESS) { 619 621 --regc->pending_tsx; 622 PJ_LOG(4,(THIS_FILE, "Error sending request, status=%d", status)); 623 } 620 624 621 625 return status;
Note: See TracChangeset
for help on using the changeset viewer.