Merge changes from topic "re-enable-ipsec"
am: 680525c742
Change-Id: Ia1d1f3981a9dd1eb8f60631d318211daf135d575
This commit is contained in:
@@ -8951,6 +8951,7 @@ package android.content {
|
|||||||
field public static final java.lang.String HARDWARE_PROPERTIES_SERVICE = "hardware_properties";
|
field public static final java.lang.String HARDWARE_PROPERTIES_SERVICE = "hardware_properties";
|
||||||
field public static final java.lang.String INPUT_METHOD_SERVICE = "input_method";
|
field public static final java.lang.String INPUT_METHOD_SERVICE = "input_method";
|
||||||
field public static final java.lang.String INPUT_SERVICE = "input";
|
field public static final java.lang.String INPUT_SERVICE = "input";
|
||||||
|
field public static final java.lang.String IPSEC_SERVICE = "ipsec";
|
||||||
field public static final java.lang.String JOB_SCHEDULER_SERVICE = "jobscheduler";
|
field public static final java.lang.String JOB_SCHEDULER_SERVICE = "jobscheduler";
|
||||||
field public static final java.lang.String KEYGUARD_SERVICE = "keyguard";
|
field public static final java.lang.String KEYGUARD_SERVICE = "keyguard";
|
||||||
field public static final java.lang.String LAUNCHER_APPS_SERVICE = "launcherapps";
|
field public static final java.lang.String LAUNCHER_APPS_SERVICE = "launcherapps";
|
||||||
@@ -25523,6 +25524,67 @@ package android.net {
|
|||||||
field public static final android.os.Parcelable.Creator<android.net.IpPrefix> CREATOR;
|
field public static final android.os.Parcelable.Creator<android.net.IpPrefix> CREATOR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public final class IpSecAlgorithm implements android.os.Parcelable {
|
||||||
|
ctor public IpSecAlgorithm(java.lang.String, byte[]);
|
||||||
|
ctor public IpSecAlgorithm(java.lang.String, byte[], int);
|
||||||
|
method public int describeContents();
|
||||||
|
method public byte[] getKey();
|
||||||
|
method public java.lang.String getName();
|
||||||
|
method public int getTruncationLengthBits();
|
||||||
|
method public void writeToParcel(android.os.Parcel, int);
|
||||||
|
field public static final java.lang.String AUTH_HMAC_MD5 = "hmac(md5)";
|
||||||
|
field public static final java.lang.String AUTH_HMAC_SHA1 = "hmac(sha1)";
|
||||||
|
field public static final java.lang.String AUTH_HMAC_SHA256 = "hmac(sha256)";
|
||||||
|
field public static final java.lang.String AUTH_HMAC_SHA384 = "hmac(sha384)";
|
||||||
|
field public static final java.lang.String AUTH_HMAC_SHA512 = "hmac(sha512)";
|
||||||
|
field public static final android.os.Parcelable.Creator<android.net.IpSecAlgorithm> CREATOR;
|
||||||
|
field public static final java.lang.String CRYPT_AES_CBC = "cbc(aes)";
|
||||||
|
}
|
||||||
|
|
||||||
|
public final class IpSecManager {
|
||||||
|
method public void applyTransportModeTransform(java.io.FileDescriptor, android.net.IpSecTransform) throws java.io.IOException;
|
||||||
|
method public android.net.IpSecManager.UdpEncapsulationSocket openUdpEncapsulationSocket(int) throws java.io.IOException, android.net.IpSecManager.ResourceUnavailableException;
|
||||||
|
method public android.net.IpSecManager.UdpEncapsulationSocket openUdpEncapsulationSocket() throws java.io.IOException, android.net.IpSecManager.ResourceUnavailableException;
|
||||||
|
method public void removeTransportModeTransform(java.io.FileDescriptor, android.net.IpSecTransform) throws java.io.IOException;
|
||||||
|
method public android.net.IpSecManager.SecurityParameterIndex reserveSecurityParameterIndex(int, java.net.InetAddress) throws android.net.IpSecManager.ResourceUnavailableException;
|
||||||
|
method public android.net.IpSecManager.SecurityParameterIndex reserveSecurityParameterIndex(int, java.net.InetAddress, int) throws android.net.IpSecManager.ResourceUnavailableException, android.net.IpSecManager.SpiUnavailableException;
|
||||||
|
field public static final int INVALID_SECURITY_PARAMETER_INDEX = 0; // 0x0
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final class IpSecManager.ResourceUnavailableException extends android.util.AndroidException {
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final class IpSecManager.SecurityParameterIndex implements java.lang.AutoCloseable {
|
||||||
|
method public void close();
|
||||||
|
method protected void finalize();
|
||||||
|
method public int getSpi();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final class IpSecManager.SpiUnavailableException extends android.util.AndroidException {
|
||||||
|
method public int getSpi();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final class IpSecManager.UdpEncapsulationSocket implements java.lang.AutoCloseable {
|
||||||
|
method public void close() throws java.io.IOException;
|
||||||
|
method public int getPort();
|
||||||
|
method public java.io.FileDescriptor getSocket();
|
||||||
|
}
|
||||||
|
|
||||||
|
public final class IpSecTransform implements java.lang.AutoCloseable {
|
||||||
|
method public void close();
|
||||||
|
field public static final int DIRECTION_IN = 0; // 0x0
|
||||||
|
field public static final int DIRECTION_OUT = 1; // 0x1
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class IpSecTransform.Builder {
|
||||||
|
ctor public IpSecTransform.Builder(android.content.Context);
|
||||||
|
method public android.net.IpSecTransform buildTransportModeTransform(java.net.InetAddress) throws java.io.IOException, android.net.IpSecManager.ResourceUnavailableException, android.net.IpSecManager.SpiUnavailableException;
|
||||||
|
method public android.net.IpSecTransform.Builder setAuthentication(int, android.net.IpSecAlgorithm);
|
||||||
|
method public android.net.IpSecTransform.Builder setEncryption(int, android.net.IpSecAlgorithm);
|
||||||
|
method public android.net.IpSecTransform.Builder setIpv4Encapsulation(android.net.IpSecManager.UdpEncapsulationSocket, int);
|
||||||
|
method public android.net.IpSecTransform.Builder setSpi(int, android.net.IpSecManager.SecurityParameterIndex);
|
||||||
|
}
|
||||||
|
|
||||||
public class LinkAddress implements android.os.Parcelable {
|
public class LinkAddress implements android.os.Parcelable {
|
||||||
method public int describeContents();
|
method public int describeContents();
|
||||||
method public java.net.InetAddress getAddress();
|
method public java.net.InetAddress getAddress();
|
||||||
|
|||||||
@@ -9462,6 +9462,7 @@ package android.content {
|
|||||||
field public static final java.lang.String HDMI_CONTROL_SERVICE = "hdmi_control";
|
field public static final java.lang.String HDMI_CONTROL_SERVICE = "hdmi_control";
|
||||||
field public static final java.lang.String INPUT_METHOD_SERVICE = "input_method";
|
field public static final java.lang.String INPUT_METHOD_SERVICE = "input_method";
|
||||||
field public static final java.lang.String INPUT_SERVICE = "input";
|
field public static final java.lang.String INPUT_SERVICE = "input";
|
||||||
|
field public static final java.lang.String IPSEC_SERVICE = "ipsec";
|
||||||
field public static final java.lang.String JOB_SCHEDULER_SERVICE = "jobscheduler";
|
field public static final java.lang.String JOB_SCHEDULER_SERVICE = "jobscheduler";
|
||||||
field public static final java.lang.String KEYGUARD_SERVICE = "keyguard";
|
field public static final java.lang.String KEYGUARD_SERVICE = "keyguard";
|
||||||
field public static final java.lang.String LAUNCHER_APPS_SERVICE = "launcherapps";
|
field public static final java.lang.String LAUNCHER_APPS_SERVICE = "launcherapps";
|
||||||
@@ -27719,6 +27720,69 @@ package android.net {
|
|||||||
field public static final android.os.Parcelable.Creator<android.net.IpPrefix> CREATOR;
|
field public static final android.os.Parcelable.Creator<android.net.IpPrefix> CREATOR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public final class IpSecAlgorithm implements android.os.Parcelable {
|
||||||
|
ctor public IpSecAlgorithm(java.lang.String, byte[]);
|
||||||
|
ctor public IpSecAlgorithm(java.lang.String, byte[], int);
|
||||||
|
method public int describeContents();
|
||||||
|
method public byte[] getKey();
|
||||||
|
method public java.lang.String getName();
|
||||||
|
method public int getTruncationLengthBits();
|
||||||
|
method public void writeToParcel(android.os.Parcel, int);
|
||||||
|
field public static final java.lang.String AUTH_HMAC_MD5 = "hmac(md5)";
|
||||||
|
field public static final java.lang.String AUTH_HMAC_SHA1 = "hmac(sha1)";
|
||||||
|
field public static final java.lang.String AUTH_HMAC_SHA256 = "hmac(sha256)";
|
||||||
|
field public static final java.lang.String AUTH_HMAC_SHA384 = "hmac(sha384)";
|
||||||
|
field public static final java.lang.String AUTH_HMAC_SHA512 = "hmac(sha512)";
|
||||||
|
field public static final android.os.Parcelable.Creator<android.net.IpSecAlgorithm> CREATOR;
|
||||||
|
field public static final java.lang.String CRYPT_AES_CBC = "cbc(aes)";
|
||||||
|
}
|
||||||
|
|
||||||
|
public final class IpSecManager {
|
||||||
|
method public void applyTransportModeTransform(java.io.FileDescriptor, android.net.IpSecTransform) throws java.io.IOException;
|
||||||
|
method public android.net.IpSecManager.UdpEncapsulationSocket openUdpEncapsulationSocket(int) throws java.io.IOException, android.net.IpSecManager.ResourceUnavailableException;
|
||||||
|
method public android.net.IpSecManager.UdpEncapsulationSocket openUdpEncapsulationSocket() throws java.io.IOException, android.net.IpSecManager.ResourceUnavailableException;
|
||||||
|
method public void removeTransportModeTransform(java.io.FileDescriptor, android.net.IpSecTransform) throws java.io.IOException;
|
||||||
|
method public android.net.IpSecManager.SecurityParameterIndex reserveSecurityParameterIndex(int, java.net.InetAddress) throws android.net.IpSecManager.ResourceUnavailableException;
|
||||||
|
method public android.net.IpSecManager.SecurityParameterIndex reserveSecurityParameterIndex(int, java.net.InetAddress, int) throws android.net.IpSecManager.ResourceUnavailableException, android.net.IpSecManager.SpiUnavailableException;
|
||||||
|
field public static final int INVALID_SECURITY_PARAMETER_INDEX = 0; // 0x0
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final class IpSecManager.ResourceUnavailableException extends android.util.AndroidException {
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final class IpSecManager.SecurityParameterIndex implements java.lang.AutoCloseable {
|
||||||
|
method public void close();
|
||||||
|
method protected void finalize();
|
||||||
|
method public int getSpi();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final class IpSecManager.SpiUnavailableException extends android.util.AndroidException {
|
||||||
|
method public int getSpi();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final class IpSecManager.UdpEncapsulationSocket implements java.lang.AutoCloseable {
|
||||||
|
method public void close() throws java.io.IOException;
|
||||||
|
method public int getPort();
|
||||||
|
method public java.io.FileDescriptor getSocket();
|
||||||
|
}
|
||||||
|
|
||||||
|
public final class IpSecTransform implements java.lang.AutoCloseable {
|
||||||
|
method public void close();
|
||||||
|
field public static final int DIRECTION_IN = 0; // 0x0
|
||||||
|
field public static final int DIRECTION_OUT = 1; // 0x1
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class IpSecTransform.Builder {
|
||||||
|
ctor public IpSecTransform.Builder(android.content.Context);
|
||||||
|
method public android.net.IpSecTransform buildTransportModeTransform(java.net.InetAddress) throws java.io.IOException, android.net.IpSecManager.ResourceUnavailableException, android.net.IpSecManager.SpiUnavailableException;
|
||||||
|
method public android.net.IpSecTransform.Builder setAuthentication(int, android.net.IpSecAlgorithm);
|
||||||
|
method public android.net.IpSecTransform.Builder setEncryption(int, android.net.IpSecAlgorithm);
|
||||||
|
method public android.net.IpSecTransform.Builder setIpv4Encapsulation(android.net.IpSecManager.UdpEncapsulationSocket, int);
|
||||||
|
method public android.net.IpSecTransform.Builder setNattKeepalive(int);
|
||||||
|
method public android.net.IpSecTransform.Builder setSpi(int, android.net.IpSecManager.SecurityParameterIndex);
|
||||||
|
method public android.net.IpSecTransform.Builder setUnderlyingNetwork(android.net.Network);
|
||||||
|
}
|
||||||
|
|
||||||
public class LinkAddress implements android.os.Parcelable {
|
public class LinkAddress implements android.os.Parcelable {
|
||||||
method public int describeContents();
|
method public int describeContents();
|
||||||
method public java.net.InetAddress getAddress();
|
method public java.net.InetAddress getAddress();
|
||||||
|
|||||||
@@ -8985,6 +8985,7 @@ package android.content {
|
|||||||
field public static final java.lang.String HARDWARE_PROPERTIES_SERVICE = "hardware_properties";
|
field public static final java.lang.String HARDWARE_PROPERTIES_SERVICE = "hardware_properties";
|
||||||
field public static final java.lang.String INPUT_METHOD_SERVICE = "input_method";
|
field public static final java.lang.String INPUT_METHOD_SERVICE = "input_method";
|
||||||
field public static final java.lang.String INPUT_SERVICE = "input";
|
field public static final java.lang.String INPUT_SERVICE = "input";
|
||||||
|
field public static final java.lang.String IPSEC_SERVICE = "ipsec";
|
||||||
field public static final java.lang.String JOB_SCHEDULER_SERVICE = "jobscheduler";
|
field public static final java.lang.String JOB_SCHEDULER_SERVICE = "jobscheduler";
|
||||||
field public static final java.lang.String KEYGUARD_SERVICE = "keyguard";
|
field public static final java.lang.String KEYGUARD_SERVICE = "keyguard";
|
||||||
field public static final java.lang.String LAUNCHER_APPS_SERVICE = "launcherapps";
|
field public static final java.lang.String LAUNCHER_APPS_SERVICE = "launcherapps";
|
||||||
@@ -25633,6 +25634,67 @@ package android.net {
|
|||||||
field public static final android.os.Parcelable.Creator<android.net.IpPrefix> CREATOR;
|
field public static final android.os.Parcelable.Creator<android.net.IpPrefix> CREATOR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public final class IpSecAlgorithm implements android.os.Parcelable {
|
||||||
|
ctor public IpSecAlgorithm(java.lang.String, byte[]);
|
||||||
|
ctor public IpSecAlgorithm(java.lang.String, byte[], int);
|
||||||
|
method public int describeContents();
|
||||||
|
method public byte[] getKey();
|
||||||
|
method public java.lang.String getName();
|
||||||
|
method public int getTruncationLengthBits();
|
||||||
|
method public void writeToParcel(android.os.Parcel, int);
|
||||||
|
field public static final java.lang.String AUTH_HMAC_MD5 = "hmac(md5)";
|
||||||
|
field public static final java.lang.String AUTH_HMAC_SHA1 = "hmac(sha1)";
|
||||||
|
field public static final java.lang.String AUTH_HMAC_SHA256 = "hmac(sha256)";
|
||||||
|
field public static final java.lang.String AUTH_HMAC_SHA384 = "hmac(sha384)";
|
||||||
|
field public static final java.lang.String AUTH_HMAC_SHA512 = "hmac(sha512)";
|
||||||
|
field public static final android.os.Parcelable.Creator<android.net.IpSecAlgorithm> CREATOR;
|
||||||
|
field public static final java.lang.String CRYPT_AES_CBC = "cbc(aes)";
|
||||||
|
}
|
||||||
|
|
||||||
|
public final class IpSecManager {
|
||||||
|
method public void applyTransportModeTransform(java.io.FileDescriptor, android.net.IpSecTransform) throws java.io.IOException;
|
||||||
|
method public android.net.IpSecManager.UdpEncapsulationSocket openUdpEncapsulationSocket(int) throws java.io.IOException, android.net.IpSecManager.ResourceUnavailableException;
|
||||||
|
method public android.net.IpSecManager.UdpEncapsulationSocket openUdpEncapsulationSocket() throws java.io.IOException, android.net.IpSecManager.ResourceUnavailableException;
|
||||||
|
method public void removeTransportModeTransform(java.io.FileDescriptor, android.net.IpSecTransform) throws java.io.IOException;
|
||||||
|
method public android.net.IpSecManager.SecurityParameterIndex reserveSecurityParameterIndex(int, java.net.InetAddress) throws android.net.IpSecManager.ResourceUnavailableException;
|
||||||
|
method public android.net.IpSecManager.SecurityParameterIndex reserveSecurityParameterIndex(int, java.net.InetAddress, int) throws android.net.IpSecManager.ResourceUnavailableException, android.net.IpSecManager.SpiUnavailableException;
|
||||||
|
field public static final int INVALID_SECURITY_PARAMETER_INDEX = 0; // 0x0
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final class IpSecManager.ResourceUnavailableException extends android.util.AndroidException {
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final class IpSecManager.SecurityParameterIndex implements java.lang.AutoCloseable {
|
||||||
|
method public void close();
|
||||||
|
method protected void finalize();
|
||||||
|
method public int getSpi();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final class IpSecManager.SpiUnavailableException extends android.util.AndroidException {
|
||||||
|
method public int getSpi();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final class IpSecManager.UdpEncapsulationSocket implements java.lang.AutoCloseable {
|
||||||
|
method public void close() throws java.io.IOException;
|
||||||
|
method public int getPort();
|
||||||
|
method public java.io.FileDescriptor getSocket();
|
||||||
|
}
|
||||||
|
|
||||||
|
public final class IpSecTransform implements java.lang.AutoCloseable {
|
||||||
|
method public void close();
|
||||||
|
field public static final int DIRECTION_IN = 0; // 0x0
|
||||||
|
field public static final int DIRECTION_OUT = 1; // 0x1
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class IpSecTransform.Builder {
|
||||||
|
ctor public IpSecTransform.Builder(android.content.Context);
|
||||||
|
method public android.net.IpSecTransform buildTransportModeTransform(java.net.InetAddress) throws java.io.IOException, android.net.IpSecManager.ResourceUnavailableException, android.net.IpSecManager.SpiUnavailableException;
|
||||||
|
method public android.net.IpSecTransform.Builder setAuthentication(int, android.net.IpSecAlgorithm);
|
||||||
|
method public android.net.IpSecTransform.Builder setEncryption(int, android.net.IpSecAlgorithm);
|
||||||
|
method public android.net.IpSecTransform.Builder setIpv4Encapsulation(android.net.IpSecManager.UdpEncapsulationSocket, int);
|
||||||
|
method public android.net.IpSecTransform.Builder setSpi(int, android.net.IpSecManager.SecurityParameterIndex);
|
||||||
|
}
|
||||||
|
|
||||||
public class LinkAddress implements android.os.Parcelable {
|
public class LinkAddress implements android.os.Parcelable {
|
||||||
method public int describeContents();
|
method public int describeContents();
|
||||||
method public java.net.InetAddress getAddress();
|
method public java.net.InetAddress getAddress();
|
||||||
|
|||||||
@@ -3031,6 +3031,9 @@ public abstract class Context {
|
|||||||
* <dt> {@link #CONNECTIVITY_SERVICE} ("connection")
|
* <dt> {@link #CONNECTIVITY_SERVICE} ("connection")
|
||||||
* <dd> A {@link android.net.ConnectivityManager ConnectivityManager} for
|
* <dd> A {@link android.net.ConnectivityManager ConnectivityManager} for
|
||||||
* handling management of network connections.
|
* handling management of network connections.
|
||||||
|
* <dt> {@link #IPSEC_SERVICE} ("ipsec")
|
||||||
|
* <dd> A {@link android.net.IpSecManager IpSecManager} for managing IPSec on
|
||||||
|
* sockets and networks.
|
||||||
* <dt> {@link #WIFI_SERVICE} ("wifi")
|
* <dt> {@link #WIFI_SERVICE} ("wifi")
|
||||||
* <dd> A {@link android.net.wifi.WifiManager WifiManager} for management of Wi-Fi
|
* <dd> A {@link android.net.wifi.WifiManager WifiManager} for management of Wi-Fi
|
||||||
* connectivity. On releases before NYC, it should only be obtained from an application
|
* connectivity. On releases before NYC, it should only be obtained from an application
|
||||||
@@ -3375,7 +3378,6 @@ public abstract class Context {
|
|||||||
* {@link android.net.IpSecManager} for encrypting Sockets or Networks with
|
* {@link android.net.IpSecManager} for encrypting Sockets or Networks with
|
||||||
* IPSec.
|
* IPSec.
|
||||||
*
|
*
|
||||||
* @hide
|
|
||||||
* @see #getSystemService
|
* @see #getSystemService
|
||||||
*/
|
*/
|
||||||
public static final String IPSEC_SERVICE = "ipsec";
|
public static final String IPSEC_SERVICE = "ipsec";
|
||||||
|
|||||||
@@ -28,8 +28,6 @@ import java.lang.annotation.RetentionPolicy;
|
|||||||
/**
|
/**
|
||||||
* IpSecAlgorithm specifies a single algorithm that can be applied to an IpSec Transform. Refer to
|
* IpSecAlgorithm specifies a single algorithm that can be applied to an IpSec Transform. Refer to
|
||||||
* RFC 4301.
|
* RFC 4301.
|
||||||
*
|
|
||||||
* @hide
|
|
||||||
*/
|
*/
|
||||||
public final class IpSecAlgorithm implements Parcelable {
|
public final class IpSecAlgorithm implements Parcelable {
|
||||||
|
|
||||||
|
|||||||
@@ -38,7 +38,9 @@ import java.net.Socket;
|
|||||||
* This class contains methods for managing IPsec sessions, which will perform kernel-space
|
* This class contains methods for managing IPsec sessions, which will perform kernel-space
|
||||||
* encryption and decryption of socket or Network traffic.
|
* encryption and decryption of socket or Network traffic.
|
||||||
*
|
*
|
||||||
* @hide
|
* <p>An IpSecManager may be obtained by calling {@link
|
||||||
|
* android.content.Context#getSystemService(String) Context#getSystemService(String)} with {@link
|
||||||
|
* android.content.Context#IPSEC_SERVICE Context#IPSEC_SERVICE}
|
||||||
*/
|
*/
|
||||||
@SystemService(Context.IPSEC_SERVICE)
|
@SystemService(Context.IPSEC_SERVICE)
|
||||||
public final class IpSecManager {
|
public final class IpSecManager {
|
||||||
|
|||||||
@@ -26,9 +26,12 @@ import android.os.IBinder;
|
|||||||
import android.os.RemoteException;
|
import android.os.RemoteException;
|
||||||
import android.os.ServiceManager;
|
import android.os.ServiceManager;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
||||||
import com.android.internal.annotations.VisibleForTesting;
|
import com.android.internal.annotations.VisibleForTesting;
|
||||||
import com.android.internal.util.Preconditions;
|
import com.android.internal.util.Preconditions;
|
||||||
|
|
||||||
import dalvik.system.CloseGuard;
|
import dalvik.system.CloseGuard;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.lang.annotation.Retention;
|
import java.lang.annotation.Retention;
|
||||||
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.RetentionPolicy;
|
||||||
@@ -43,8 +46,6 @@ import java.net.InetAddress;
|
|||||||
*
|
*
|
||||||
* <p>An IpSecTransform may either represent a tunnel mode transform that operates on a wide array
|
* <p>An IpSecTransform may either represent a tunnel mode transform that operates on a wide array
|
||||||
* of traffic or may represent a transport mode transform operating on a Socket or Sockets.
|
* of traffic or may represent a transport mode transform operating on a Socket or Sockets.
|
||||||
*
|
|
||||||
* @hide
|
|
||||||
*/
|
*/
|
||||||
public final class IpSecTransform implements AutoCloseable {
|
public final class IpSecTransform implements AutoCloseable {
|
||||||
private static final String TAG = "IpSecTransform";
|
private static final String TAG = "IpSecTransform";
|
||||||
|
|||||||
Reference in New Issue
Block a user