We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c66c1e commit 9b2a8ddCopy full SHA for 9b2a8dd
snapo-link-android/link-core/src/main/java/com/openai/snapo/link/core/SnapOLinkServer.kt
@@ -46,6 +46,9 @@ class SnapOLinkServer(
46
47
/** Name visible to `adb shell cat /proc/net/unix`. */
48
val socketName: String = "snapo_server_${Process.myPid()}"
49
+ // Security note: this binds in the Linux abstract namespace. Access is governed by SELinux
50
+ // (connectto), not filesystem perms. Other apps will not be able to connect, but it is
51
+ // reachable by ADB forward.
52
53
// --- lifecycle ---
54
@Volatile
0 commit comments