Ignore:
Timestamp:
Jan 17, 2008 5:29:36 PM (16 years ago)
Author:
nanang
Message:

Ticket #452:

  • Add directory srtp to third_party/build directory
  • Add libsrtp project & integrate it to pjproject vs8 solution
  • Add transport_srtp.h & .c
  • Modify project dependencies to include libsrtp
  • Modify Samples-vc.mak, add libsrtp as third party library
  • Modify transport interface
  • Modify transport_ice & transport_udp to accomodate new transport interface
  • Modify other files that uses transport
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/users/nanang/pjsip/include/pjsip-ua/sip_inv.h

    r1598 r1698  
    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.