Changeset 2822 for pjproject/trunk/pjsip/src/pjsip-simple/evsub.c
- Timestamp:
- Jun 30, 2009 1:47:44 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip-simple/evsub.c
r2730 r2822 1379 1379 } 1380 1380 1381 if (dlgsub == dlgsub_head) { 1381 /* Note: 1382 * the second condition is for http://trac.pjsip.org/repos/ticket/911 1383 */ 1384 if (dlgsub == dlgsub_head || 1385 (dlgsub->sub && 1386 pjsip_evsub_get_state(dlgsub->sub)==PJSIP_EVSUB_STATE_TERMINATED)) 1387 { 1388 const char *reason_msg = 1389 (dlgsub == dlgsub_head ? "Subscription Does Not Exist" : 1390 "Subscription already terminated"); 1391 1382 1392 /* This could be incoming request to create new subscription */ 1383 1393 PJ_LOG(4,(THIS_FILE, 1384 "Subscription not found for %.*s, event=%.*s;id=%.*s", 1394 "%s for %.*s, event=%.*s;id=%.*s", 1395 reason_msg, 1385 1396 (int)tsx->method.name.slen, 1386 1397 tsx->method.name.ptr, … … 1394 1405 pjsip_method_cmp(&tsx->method, &pjsip_notify_method)==0) 1395 1406 { 1396 pj_str_t reason = pj_str("Subscription Does Not Exist");1407 pj_str_t reason; 1397 1408 pjsip_tx_data *tdata; 1398 1409 pj_status_t status; 1399 1410 1411 pj_cstr(&reason, reason_msg); 1400 1412 status = pjsip_dlg_create_response(dlg, 1401 1413 event->body.tsx_state.src.rdata,
Note: See TracChangeset
for help on using the changeset viewer.