Ignore:
Timestamp:
Jul 26, 2019 9:32:14 AM (5 years ago)
Author:
nanang
Message:

Close #2217: Omit deprecated IPv6 addresses from ICE candidates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib/src/pj/ip_helper_symbian.cpp

    r3553 r6045  
    139139 
    140140/* 
     141 * Enumerate the local IP interface currently active in the host. 
     142 */ 
     143PJ_DEF(pj_status_t) pj_enum_ip_interface2( const pj_enum_ip_option *opt, 
     144                                           unsigned *count, 
     145                                           pj_sockaddr ifs[]) 
     146{ 
     147    pj_enum_ip_option opt_; 
     148 
     149    if (opt && opt->omit_deprecated_ipv6) 
     150        return PJ_ENOTSUP; 
     151 
     152    if (opt) 
     153        opt_ = *opt; 
     154    else 
     155        pj_enum_ip_option_default(&opt_); 
     156 
     157    return pj_enum_ip_interface(opt_.af, count, ifs); 
     158} 
     159 
     160/* 
    141161 * Enumerate the IP routing table for this host. 
    142162 */ 
Note: See TracChangeset for help on using the changeset viewer.