Changeset 1287 for pjproject/trunk
- Timestamp:
- May 22, 2007 12:21:40 PM (18 years ago)
- Location:
- pjproject/trunk/pjsip
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsip-ua/sip_inv.h
r974 r1287 224 224 pj_pool_t *pool; /**< Dialog's pool. */ 225 225 pjsip_inv_state state; /**< Invite sess state. */ 226 pj_bool_t cancelling; /**< CANCEL sent? */ 226 227 pjsip_status_code cause; /**< Disconnect cause. */ 227 228 pj_str_t cause_text; /**< Cause text. */ -
pjproject/trunk/pjsip/src/pjsip-ua/sip_inv.c
r1266 r1287 1561 1561 /* Done */ 1562 1562 1563 inv->cancelling = PJ_TRUE; 1563 1564 *p_tdata = tdata; 1564 1565 … … 1951 1952 e->body.tsx_state.src.rdata); 1952 1953 1953 } else if (tsx->status_code==401 || tsx->status_code==407) { 1954 } else if ((tsx->status_code==401 || tsx->status_code==407) && 1955 !inv->cancelling) 1956 { 1954 1957 1955 1958 /* Handle authentication failure:
Note: See TracChangeset
for help on using the changeset viewer.