Changeset 5877 for pjproject/trunk/pjsip/include/pjsua2/call.hpp
- Timestamp:
- Sep 4, 2018 2:57:07 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/include/pjsua2/call.hpp
r5834 r5877 286 286 /** 287 287 * 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. 289 290 */ 290 291 struct MediaTransportInfo 291 292 { 292 293 /** 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. 294 310 */ 295 311 SocketAddress srcRtpName; 296 312 297 313 /** 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. 299 316 */ 300 317 SocketAddress srcRtcpName;
Note: See TracChangeset
for help on using the changeset viewer.