a4a35a92ea
Provide native APIs to tag the various sockets used for network transfer, which helps apps tracking down data usage inside their app. We've had equivalent Java APIs since API level 14. https://developer.android.com/reference/android/net/TrafficStats.html#tagSocket(java.net.Socket) https://developer.android.com/reference/android/net/TrafficStats.html#untagSocket(java.net.Socket) Given that these Java APIs are implemented in native side, providing NDK APIs directly will be easier for native users to use it. Bug: 29761778 Bug: 202086915 Test: Tests in change Ic6554d9b98cef9b41b7eae06315d284c574c0a45 Change-Id: I802ce62f82199ce087bf8feb03afb26de1ce526e
28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
# The following symbols marked with # llndk are available to vendor code.
|
|
# Unlike other VNDK libraries where keeping backwards compatibility is required
|
|
# only within a platform release, these symbols need much longer suppport
|
|
# because the same LLNDK library serves for both system and vendor partition
|
|
# which might be a few years old.
|
|
LIBANDROID_NET {
|
|
global:
|
|
# These functions have been part of the NDK since API 24.
|
|
android_getaddrinfofornetwork; # llndk
|
|
android_setsocknetwork; # llndk
|
|
android_setprocnetwork; # llndk
|
|
# These functions have been part of the NDK since API 29.
|
|
android_res_cancel; # llndk
|
|
android_res_nquery; # llndk
|
|
android_res_nresult; # llndk
|
|
android_res_nsend; # llndk
|
|
# These functions have been part of the NDK since API 31.
|
|
android_getprocnetwork; # llndk
|
|
android_setprocdns; # llndk
|
|
android_getprocdns; # llndk
|
|
# These functions have been part of the NDK since API 33.
|
|
android_tag_socket_with_uid; # llndk
|
|
android_tag_socket; # llndk
|
|
android_untag_socket; # llndk
|
|
local:
|
|
*;
|
|
};
|