Changeset 4380


Ignore:
Timestamp:
Feb 27, 2013 9:57:58 AM (11 years ago)
Author:
nanang
Message:

Re #1539: backported to 1.x

Location:
pjproject/branches/1.x
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/1.x

  • pjproject/branches/1.x/pjsip/src/pjsip/sip_dialog.c

    r3553 r4380  
    18721872 
    18731873        dlg_update_routeset(dlg, rdata); 
     1874 
     1875        /* Update remote capability info after the first 2xx response 
     1876         * (ticket #1539). Note that the remote capability retrieved here 
     1877         * will be assumed to remain unchanged for the duration of the dialog. 
     1878         */ 
     1879        if (dlg->role==PJSIP_ROLE_UAC && !dlg->uac_has_2xx) { 
     1880            pjsip_dlg_update_remote_cap(dlg, rdata->msg_info.msg, PJ_FALSE); 
     1881            dlg->uac_has_2xx = PJ_TRUE; 
     1882        } 
    18741883    } 
    18751884 
Note: See TracChangeset for help on using the changeset viewer.