Ignore:
Timestamp:
Oct 3, 2007 6:28:49 PM (17 years ago)
Author:
bennylp
Message:

Ticket 5: Support for SIP UPDATE (RFC 3311) and fix the offer/answer negotiation

File:
1 edited

Legend:

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

    r1466 r1469  
    12011201        } 
    12021202 
    1203         /* Add Allow header in 2xx and 405 response. */ 
    1204         if (((st_class==2 && dlg->add_allow) 
     1203        /* Add Allow header in 18x, 2xx and 405 response. */ 
     1204        if ((((st_code/10==18 || st_class==2) && dlg->add_allow) 
    12051205             || st_code==405) && 
    12061206            pjsip_msg_find_hdr(tdata->msg, PJSIP_H_ALLOW, NULL)==NULL)  
Note: See TracChangeset for help on using the changeset viewer.