Changeset 2959 for pjproject


Ignore:
Timestamp:
Oct 21, 2009 2:37:52 AM (15 years ago)
Author:
bennylp
Message:

More ticket #937 (presence revamping):

  • Added couple of SIPp scenario files to test various retry scenarios:
    • uas-subscribe-refresh-481.xml: client should resubscribe immediately on receiving 481 on resubscription
    • uas-subscribe-terminated-retry.xml: client should resubscribe upon receiving NOTIFY with some specific termination reasons
  • Added log message when PJSUA-LIB is resubscribing automatically due to above
Location:
pjproject/trunk
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_pres.c

    r2956 r2959  
    14061406    if (resched) { 
    14071407        pj_time_val delay; 
     1408 
     1409        PJ_LOG(4,(THIS_FILE,   
     1410                  "Resubscribing buddy id %u in %u ms (reason: %.*s)",  
     1411                  buddy->index, msec_interval, 
     1412                  (int)buddy->term_reason.slen, 
     1413                  buddy->term_reason.ptr)); 
    14081414 
    14091415        pj_timer_entry_init(&buddy->timer, 0, buddy, &buddy_timer_cb); 
Note: See TracChangeset for help on using the changeset viewer.