Ignore:
Timestamp:
Aug 2, 2017 2:51:59 AM (7 years ago)
Author:
ming
Message:

Fixed #2032: NAT64 support for IPv4 interoperability

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua2/endpoint.cpp

    r5635 r5636  
    149149    } 
    150150 
     151    this->stunTryIpv6 = PJ2BOOL(ua_cfg.stun_try_ipv6); 
    151152    this->stunIgnoreFailure = PJ2BOOL(ua_cfg.stun_ignore_failure); 
    152153    this->natTypeInSdp = ua_cfg.nat_type_in_sdp; 
     
    195196    NODE_READ_STRING  ( this_node, userAgent); 
    196197    NODE_READ_STRINGV ( this_node, stunServer); 
     198    NODE_READ_BOOL    ( this_node, stunTryIpv6); 
    197199    NODE_READ_BOOL    ( this_node, stunIgnoreFailure); 
    198200    NODE_READ_INT     ( this_node, natTypeInSdp); 
     
    210212    NODE_WRITE_STRING  ( this_node, userAgent); 
    211213    NODE_WRITE_STRINGV ( this_node, stunServer); 
     214    NODE_WRITE_BOOL    ( this_node, stunTryIpv6); 
    212215    NODE_WRITE_BOOL    ( this_node, stunIgnoreFailure); 
    213216    NODE_WRITE_INT     ( this_node, natTypeInSdp); 
Note: See TracChangeset for help on using the changeset viewer.