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

Ticket #61: Implement SRTP support in PJMEDIA and PJSUA-LIB, and updated applications because of the changes. This is a major modification back ported from SRTP branch. See ticket #61 for changelog detail of this commit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua-lib/pjsua_internal.h

    r1717 r1735  
    5151    pjsip_evsub         *xfer_sub;  /**< Xfer server subscription, if this 
    5252                                         call was triggered by xfer.        */ 
    53     pjmedia_transport   *med_tp;    /**< Media transport.                   */ 
     53    pjmedia_transport   *med_tp;    /**< Current media transport.           */ 
     54    pjmedia_transport   *med_orig;  /**< Original media transport           */ 
    5455    pj_timer_entry       refresh_tm;/**< Timer to send re-INVITE.           */ 
    5556    pj_timer_entry       hangup_tm; /**< Timer to hangup call.              */ 
     
    314315 */ 
    315316pj_status_t pjsua_media_channel_init(pjsua_call_id call_id, 
    316                                     pjsip_role_e role); 
     317                                     pjsip_role_e role, 
     318                                     int security_level); 
    317319pj_status_t pjsua_media_channel_create_sdp(pjsua_call_id call_id,  
    318320                                           pj_pool_t *pool, 
     321                                           const pjmedia_sdp_session *rem_sdp, 
    319322                                           pjmedia_sdp_session **p_sdp); 
    320323pj_status_t pjsua_media_channel_update(pjsua_call_id call_id, 
    321                                        const pjmedia_sdp_session *local_sdp, 
     324                                       pjmedia_sdp_session *local_sdp, 
    322325                                       const pjmedia_sdp_session *remote_sdp); 
    323326pj_status_t pjsua_media_channel_deinit(pjsua_call_id call_id); 
Note: See TracChangeset for help on using the changeset viewer.