Merge "Expose TcpRepairWindow as module-lib API" am: f24f42ad0f
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1519961 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I2621e4f244e70dfdbd6e6e228f9c6401326fc56a
This commit is contained in:
@@ -8,6 +8,20 @@ package android.app {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
package android.net {
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
package android.os {
|
package android.os {
|
||||||
|
|
||||||
public class Binder implements android.os.IBinder {
|
public class Binder implements android.os.IBinder {
|
||||||
|
|||||||
@@ -16,12 +16,15 @@
|
|||||||
|
|
||||||
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