Home
last modified time | relevance | path

Searched refs:ConfigAttributeIpv4Pcscf (Results 1 – 6 of 6) sorted by relevance

/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/message/
DIkeConfigPayloadTest.java58 import com.android.internal.net.ipsec.test.ike.message.IkeConfigPayload.ConfigAttributeIpv4Pcscf;
239 assertEquals(IPV4_PCSCF_ADDR, ((ConfigAttributeIpv4Pcscf) att).address); in testDecodeConfigRequest()
276 assertEquals(IPV4_PCSCF_ADDR, ((ConfigAttributeIpv4Pcscf) att).address); in testDecodeConfigResponse()
670 ConfigAttributeIpv4Pcscf attribute = new ConfigAttributeIpv4Pcscf(IPV4_PCSCF_ADDR); in testConstructIpv4PcscfWithValue()
678 ConfigAttributeIpv4Pcscf attribute = new ConfigAttributeIpv4Pcscf(); in testConstructIpv4PcscfWithoutValue()
686 ConfigAttributeIpv4Pcscf attribute = in testDecodeIpv4PcscfWithValue()
687 new ConfigAttributeIpv4Pcscf(IPV4_PCSCF_ADDR.getAddress()); in testDecodeIpv4PcscfWithValue()
695 ConfigAttributeIpv4Pcscf attribute = new ConfigAttributeIpv4Pcscf(new byte[0]); in testDecodeIpv4PcscfWithoutValue()
703 ConfigAttributeIpv4Pcscf attribute = new ConfigAttributeIpv4Pcscf(IPV4_PCSCF_ADDR); in testEncodeIpv4PcscfWithValue()
711 ConfigAttributeIpv4Pcscf attribute = new ConfigAttributeIpv4Pcscf(); in testEncodeIpv4PcscfWithoutValue()
[all …]
/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSessionConfiguration.java33 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv4Pcscf;
108 ConfigAttributeIpv4Pcscf ip4Pcscf = (ConfigAttributeIpv4Pcscf) attr; in IkeSessionConfiguration()
DIkeSessionParams.java42 import com.android.internal.net.ipsec.ike.message.IkeConfigPayload.ConfigAttributeIpv4Pcscf;
1957 return addConfigRequest(new ConfigAttributeIpv4Pcscf((Inet4Address) address)); in addPcscfServerRequest()
1979 return addConfigRequest(new ConfigAttributeIpv4Pcscf()); in addPcscfServerRequest()
/packages/modules/IPsec/tests/iketests/src/java/android/net/ipsec/ike/
DChildSessionConfigurationTest.java33 import com.android.internal.net.ipsec.test.ike.message.IkeConfigPayload.ConfigAttributeIpv4Pcscf;
77 private ConfigAttributeIpv4Pcscf mIpv4Pcscf;
100 mIpv4Pcscf = new ConfigAttributeIpv4Pcscf(IPV4_ADDRESS); in setUp()
DIkeSessionConfigurationTest.java35 import com.android.internal.net.ipsec.test.ike.message.IkeConfigPayload.ConfigAttributeIpv4Pcscf;
107 attributeList.add(new ConfigAttributeIpv4Pcscf(PCSCF_IPV4_ADDRESS)); in testBuildWithConfigPayload()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/
DIkeConfigPayload.java298 return new ConfigAttributeIpv4Pcscf(value); in decodeSingleAttributeFrom()
785 public static class ConfigAttributeIpv4Pcscf extends IkeConfigAttrIpv4AddressBase class in IkeConfigPayload
788 public ConfigAttributeIpv4Pcscf(Inet4Address ipv4Address) { in ConfigAttributeIpv4Pcscf() method in IkeConfigPayload.ConfigAttributeIpv4Pcscf
797 public ConfigAttributeIpv4Pcscf() { in ConfigAttributeIpv4Pcscf() method in IkeConfigPayload.ConfigAttributeIpv4Pcscf
803 ConfigAttributeIpv4Pcscf(byte[] value) throws InvalidSyntaxException { in ConfigAttributeIpv4Pcscf() method in IkeConfigPayload.ConfigAttributeIpv4Pcscf