Lines Matching refs:properties
50 IPConfig::Properties properties = in UpdateIPConfigFromPPP() local
52 properties.blackhole_ipv6 = blackhole_ipv6; in UpdateIPConfigFromPPP()
53 UpdateIPConfig(properties); in UpdateIPConfigFromPPP()
61 IPConfig::Properties properties = in UpdateIPConfigFromPPPWithMTU() local
63 properties.blackhole_ipv6 = blackhole_ipv6; in UpdateIPConfigFromPPPWithMTU()
64 properties.mtu = mtu; in UpdateIPConfigFromPPPWithMTU()
65 UpdateIPConfig(properties); in UpdateIPConfigFromPPPWithMTU()
85 IPConfig::Properties properties; in ParseIPConfiguration() local
86 properties.address_family = IPAddress::kFamilyIPv4; in ParseIPConfiguration()
87 properties.subnet_prefix = IPAddress::GetMaxPrefixLength( in ParseIPConfiguration()
88 properties.address_family); in ParseIPConfiguration()
94 properties.address = value; in ParseIPConfiguration()
96 properties.peer_address = value; in ParseIPConfiguration()
98 properties.gateway = value; in ParseIPConfiguration()
100 properties.dns_servers.insert(properties.dns_servers.begin(), value); in ParseIPConfiguration()
102 properties.dns_servers.push_back(value); in ParseIPConfiguration()
106 size_t prefix = IPAddress::GetMaxPrefixLength(properties.address_family); in ParseIPConfiguration()
107 properties.exclusion_list.push_back(value + "/" + in ParseIPConfiguration()
115 properties.mtu = mru; in ParseIPConfiguration()
121 if (properties.gateway.empty()) { in ParseIPConfiguration()
125 properties.gateway = properties.peer_address; in ParseIPConfiguration()
127 return properties; in ParseIPConfiguration()