Ignore:
Timestamp:
May 19, 2011 8:05:23 AM (13 years ago)
Author:
ming
Message:

Fixed #1268: Option for automatic/manual sending of RTCP SDES/BYE for the stream.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/1.x/pjmedia/include/pjmedia/session.h

    r3553 r3571  
    233233 
    234234/** 
     235 * Send RTCP SDES for the session. 
     236 * 
     237 * @param session       The media session. 
     238 * 
     239 * @return              PJ_SUCCESS on success. 
     240 */ 
     241PJ_DECL(pj_status_t)  
     242pjmedia_session_send_rtcp_sdes( const pjmedia_session *session ); 
     243 
     244/** 
     245 * Send RTCP BYE for the session. 
     246 * 
     247 * @param session       The media session. 
     248 * 
     249 * @return              PJ_SUCCESS on success. 
     250 */ 
     251PJ_DECL(pj_status_t)  
     252pjmedia_session_send_rtcp_bye( const pjmedia_session *session ); 
     253 
     254/** 
    235255 * Enumerate media streams in the session. 
    236256 * 
Note: See TracChangeset for help on using the changeset viewer.