Ignore:
Timestamp:
Jan 23, 2008 8:29:30 PM (16 years ago)
Author:
bennylp
Message:

Related to ticket #61: added new invite session API pjsip_inv_verify_request() which takes additional remote SDP, to avoid parsing SDP multiple times

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip-ua/sip_inv.h

    r1598 r1733  
    395395 *                      (this is useful e.g. when application wants to send  
    396396 *                      the response statelessly). 
     397 * 
     398 * @see pjsip_inv_verify_request2() 
    397399 */ 
    398400PJ_DECL(pj_status_t) pjsip_inv_verify_request(  pjsip_rx_data *rdata, 
     
    403405                                                pjsip_tx_data **tdata); 
    404406 
     407/** 
     408 * Variant of #pjsip_inv_verify_request() which allows application to specify 
     409 * the parsed SDP in the \a offer argument. This is useful to avoid having to 
     410 * re-parse the SDP in the incoming request. 
     411 * 
     412 * @see pjsip_inv_verify_request() 
     413 */ 
     414PJ_DECL(pj_status_t) pjsip_inv_verify_request2( pjsip_rx_data *rdata, 
     415                                                unsigned *options, 
     416                                                const pjmedia_sdp_session *offer, 
     417                                                const pjmedia_sdp_session *answer, 
     418                                                pjsip_dialog *dlg, 
     419                                                pjsip_endpoint *endpt, 
     420                                                pjsip_tx_data **tdata); 
    405421 
    406422/** 
Note: See TracChangeset for help on using the changeset viewer.