Home
last modified time | relevance | path

Searched refs:ConfigAttributeIpv6Pcscf (Results 1 – 5 of 5) sorted by relevance

/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/message/
DIkeConfigPayloadTest.java62 import com.android.internal.net.ipsec.test.ike.message.IkeConfigPayload.ConfigAttributeIpv6Pcscf;
243 assertEquals(IPV6_PCSCF_ADDR, ((ConfigAttributeIpv6Pcscf) att).address); in testDecodeConfigRequest()
280 assertEquals(IPV6_PCSCF_ADDR, ((ConfigAttributeIpv6Pcscf) att).address); in testDecodeConfigResponse()
872 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(IPV6_PCSCF_ADDR); in testConstructIpv6PcscfWithValue()
880 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(); in testConstructIpv6PcscfWithoutValue()
888 ConfigAttributeIpv6Pcscf attribute = in testDecodeIpv6PcscfWithValue()
889 new ConfigAttributeIpv6Pcscf(IPV6_PCSCF_ADDR.getAddress()); in testDecodeIpv6PcscfWithValue()
897 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(new byte[0]); in testDecodeIpv6PcscfWithoutValue()
905 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(IPV6_PCSCF_ADDR); in testEncodeIpv6PcscfWithValue()
913 ConfigAttributeIpv6Pcscf attribute = new ConfigAttributeIpv6Pcscf(); in testEncodeIpv6PcscfWithoutValue()
[all …]
/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSessionConfiguration.java34 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv6Pcscf;
112 ConfigAttributeIpv6Pcscf ip6Pcscf = (ConfigAttributeIpv6Pcscf) attr; in IkeSessionConfiguration()
DIkeSessionParams.java43 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv6Pcscf;
1959 return addConfigRequest(new ConfigAttributeIpv6Pcscf((Inet6Address) address)); in addPcscfServerRequest()
1981 return addConfigRequest(new ConfigAttributeIpv6Pcscf()); in addPcscfServerRequest()
/packages/modules/IPsec/tests/iketests/src/java/android/net/ipsec/ike/
DIkeSessionConfigurationTest.java36 import com.android.internal.net.ipsec.test.ike.message.IkeConfigPayload.ConfigAttributeIpv6Pcscf;
108 attributeList.add(new ConfigAttributeIpv6Pcscf(PCSCF_IPV6_ADDRESS)); in testBuildWithConfigPayload()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/
DIkeConfigPayload.java300 return new ConfigAttributeIpv6Pcscf(value); in decodeSingleAttributeFrom()
1150 public static class ConfigAttributeIpv6Pcscf extends IkeConfigAttrIpv6AddressBase class in IkeConfigPayload
1153 public ConfigAttributeIpv6Pcscf(Inet6Address ipv6Address) { in ConfigAttributeIpv6Pcscf() method in IkeConfigPayload.ConfigAttributeIpv6Pcscf
1162 public ConfigAttributeIpv6Pcscf() { in ConfigAttributeIpv6Pcscf() method in IkeConfigPayload.ConfigAttributeIpv6Pcscf
1166 protected ConfigAttributeIpv6Pcscf(byte[] value) throws InvalidSyntaxException { in ConfigAttributeIpv6Pcscf() method in IkeConfigPayload.ConfigAttributeIpv6Pcscf