Changeset 5788 for pjproject/trunk/pjsip/src/pjsua2/account.cpp
- Timestamp:
- May 9, 2018 6:58:48 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua2/account.cpp
r5755 r5788 359 359 NODE_READ_NUM_T ( this_node, pjsua_ipv6_use, ipv6Use); 360 360 NODE_READ_OBJ ( this_node, transportConfig); 361 NODE_READ_BOOL ( this_node, rtcpMuxEnabled); 361 362 } 362 363 … … 372 373 NODE_WRITE_NUM_T ( this_node, pjsua_ipv6_use, ipv6Use); 373 374 NODE_WRITE_OBJ ( this_node, transportConfig); 375 NODE_WRITE_BOOL ( this_node, rtcpMuxEnabled); 374 376 } 375 377 … … 560 562 ret.srtp_opt = mediaConfig.srtpOpt.toPj(); 561 563 ret.ipv6_media_use = mediaConfig.ipv6Use; 564 ret.enable_rtcp_mux = mediaConfig.rtcpMuxEnabled; 562 565 563 566 // AccountVideoConfig … … 735 738 mediaConfig.srtpOpt.fromPj(prm.srtp_opt); 736 739 mediaConfig.ipv6Use = prm.ipv6_media_use; 740 mediaConfig.rtcpMuxEnabled = prm.enable_rtcp_mux; 737 741 738 742 // AccountVideoConfig
Note: See TracChangeset
for help on using the changeset viewer.