Remove TcpRepairWindow from module-lib API
Both TcpRepairWindow and TcpKeepaliveController(user) are in the connectivity module, so TcpRepairWindow doesn't need to be the module-lib API. Thus, remove TcpRepairWindow from module-lib API. Bug: 172183305 Test: m update-api Change-Id: I8fde726f8ad73637e6deab69ea83b3699bb2cf45
This commit is contained in:
@@ -133,16 +133,6 @@ package android.net {
|
|||||||
method @NonNull public android.net.NetworkRequest.Builder setUids(@Nullable java.util.Set<android.util.Range<java.lang.Integer>>);
|
method @NonNull public android.net.NetworkRequest.Builder setUids(@Nullable java.util.Set<android.util.Range<java.lang.Integer>>);
|
||||||
}
|
}
|
||||||
|
|
||||||
public final class TcpRepairWindow {
|
|
||||||
ctor public TcpRepairWindow(int, int, int, int, int, int);
|
|
||||||
field public final int maxWindow;
|
|
||||||
field public final int rcvWnd;
|
|
||||||
field public final int rcvWndScale;
|
|
||||||
field public final int rcvWup;
|
|
||||||
field public final int sndWl1;
|
|
||||||
field public final int sndWnd;
|
|
||||||
}
|
|
||||||
|
|
||||||
public final class TestNetworkInterface implements android.os.Parcelable {
|
public final class TestNetworkInterface implements android.os.Parcelable {
|
||||||
ctor public TestNetworkInterface(@NonNull android.os.ParcelFileDescriptor, @NonNull String);
|
ctor public TestNetworkInterface(@NonNull android.os.ParcelFileDescriptor, @NonNull String);
|
||||||
method public int describeContents();
|
method public int describeContents();
|
||||||
|
|||||||
@@ -16,15 +16,12 @@
|
|||||||
|
|
||||||
package android.net;
|
package android.net;
|
||||||
|
|
||||||
import android.annotation.SystemApi;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Corresponds to C's {@code struct tcp_repair_window} from
|
* Corresponds to C's {@code struct tcp_repair_window} from
|
||||||
* include/uapi/linux/tcp.h
|
* include/uapi/linux/tcp.h
|
||||||
*
|
*
|
||||||
* @hide
|
* @hide
|
||||||
*/
|
*/
|
||||||
@SystemApi(client = SystemApi.Client.MODULE_LIBRARIES)
|
|
||||||
public final class TcpRepairWindow {
|
public final class TcpRepairWindow {
|
||||||
public final int sndWl1;
|
public final int sndWl1;
|
||||||
public final int sndWnd;
|
public final int sndWnd;
|
||||||
|
|||||||
Reference in New Issue
Block a user