blob: 5ee819b7cda742c4de8110a7d91e46d68c912ee4 [file] [log] [blame]
KH Shid97a3082022-12-06 19:46:31 +08001/*
2 * Copyright (C) 2022 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.hardware.tetheroffload;
18
19import android.hardware.tetheroffload.NatTimeoutUpdate;
20import android.hardware.tetheroffload.OffloadCallbackEvent;
21
22/**
23 * Callback providing information about status of hardware management process
24 * as well as providing a way to keep offloaded connections from timing out.
25 */
26@VintfStability
27oneway interface ITetheringOffloadCallback {
28 /**
29 * Called when an asynchronous event is generated by the hardware
30 * management process.
31 */
32 void onEvent(in OffloadCallbackEvent event);
33
34 /**
35 * Provide a way for the management process to request that a connections
36 * timeout be updated in kernel.
37 *
38 * This is necessary to ensure that offloaded traffic is not cleaned up
39 * by the kernel connection tracking module for IPv4.
40 */
41 void updateTimeout(in NatTimeoutUpdate params);
42}