Changeset 5636 for pjproject/trunk/pjsip/src/pjsua2/endpoint.cpp
- Timestamp:
- Aug 2, 2017 2:51:59 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua2/endpoint.cpp
r5635 r5636 149 149 } 150 150 151 this->stunTryIpv6 = PJ2BOOL(ua_cfg.stun_try_ipv6); 151 152 this->stunIgnoreFailure = PJ2BOOL(ua_cfg.stun_ignore_failure); 152 153 this->natTypeInSdp = ua_cfg.nat_type_in_sdp; … … 195 196 NODE_READ_STRING ( this_node, userAgent); 196 197 NODE_READ_STRINGV ( this_node, stunServer); 198 NODE_READ_BOOL ( this_node, stunTryIpv6); 197 199 NODE_READ_BOOL ( this_node, stunIgnoreFailure); 198 200 NODE_READ_INT ( this_node, natTypeInSdp); … … 210 212 NODE_WRITE_STRING ( this_node, userAgent); 211 213 NODE_WRITE_STRINGV ( this_node, stunServer); 214 NODE_WRITE_BOOL ( this_node, stunTryIpv6); 212 215 NODE_WRITE_BOOL ( this_node, stunIgnoreFailure); 213 216 NODE_WRITE_INT ( this_node, natTypeInSdp);
Note: See TracChangeset
for help on using the changeset viewer.