Ignore:
Timestamp:
Sep 4, 2018 2:57:07 PM (6 years ago)
Author:
riza
Message:

Re #2049 (misc): Add local RTP/RTCP address information to MediaTransportInfo?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua2/call.hpp

    r5834 r5877  
    286286/** 
    287287 * This structure describes media transport informations. It corresponds to the 
    288  * pjmedia_transport_info structure. 
     288 * pjmedia_transport_info structure. The address name field can be empty string 
     289 * if the address in the pjmedia_transport_info is invalid. 
    289290 */ 
    290291struct MediaTransportInfo 
    291292{ 
    292293    /** 
    293      * Remote address where RTP originated from. 
     294     * Address to be advertised as the local address for the RTP socket,  
     295     * which does not need to be equal as the bound address (for example,  
     296     * this address can be the address resolved with STUN). 
     297     */ 
     298    SocketAddress   localRtpName; 
     299 
     300    /** 
     301     * Address to be advertised as the local address for the RTCP socket,  
     302     * which does not need to be equal as the bound address (for example,  
     303     * this address can be the address resolved with STUN). 
     304     */ 
     305    SocketAddress   localRtcpName; 
     306 
     307    /** 
     308     * Remote address where RTP originated from. This can be empty string if  
     309     * no data is received from the remote. 
    294310     */ 
    295311    SocketAddress   srcRtpName; 
    296312 
    297313    /** 
    298      * Remote address where RTCP originated from. 
     314     * Remote address where RTCP originated from. This can be empty string if  
     315     * no data is recevied from the remote. 
    299316     */ 
    300317    SocketAddress   srcRtcpName; 
Note: See TracChangeset for help on using the changeset viewer.