Ignore:
Timestamp:
Feb 9, 2006 2:01:40 PM (18 years ago)
Author:
bennylp
Message:

Updated with new jitter buffer, and statistics in pjsua

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip/sip_dialog.c

    r160 r169  
    930930 
    931931        to->tag = dlg->local.info->tag; 
     932 
     933        if (dlg->state == PJSIP_DIALOG_STATE_NULL) 
     934            dlg->state = PJSIP_DIALOG_STATE_ESTABLISHED; 
    932935    } 
    933936} 
     
    10981101 
    10991102    /* Create UAS transaction for this request. */ 
    1100     if (pjsip_rdata_get_tsx(rdata) == NULL) { 
     1103    if (pjsip_rdata_get_tsx(rdata) == NULL &&  
     1104        rdata->msg_info.msg->line.req.method.id != PJSIP_ACK_METHOD)  
     1105    { 
    11011106        status = pjsip_tsx_create_uas(dlg->ua, rdata, &tsx); 
    11021107        PJ_ASSERT_ON_FAIL(status==PJ_SUCCESS,{goto on_return;}); 
     
    12811286} 
    12821287 
    1283  
Note: See TracChangeset for help on using the changeset viewer.