Get proper socket fd

This commit is contained in:
M66B 2023-09-08 18:12:19 +02:00
parent be043f28e0
commit 67abc81566
1 changed files with 4 additions and 0 deletions

View File

@ -325,6 +325,7 @@ public class WriteTimeoutSocket extends Socket {
//The loop handles issues with non-public classes between
//java.net.Socket and the actual socket type held in this object.
//Must inspect java.net.Socket to ensure compatiblity with old behavior.
/*
for (Class<?> k = socket.getClass(); k != Object.class; k = k.getSuperclass()) {
try {
Method m = k.getDeclaredMethod("getFileDescriptor$");
@ -336,6 +337,9 @@ public class WriteTimeoutSocket extends Socket {
}
}
return null;
*/
android.os.ParcelFileDescriptor pfd = android.os.ParcelFileDescriptor.fromSocket(socket);
return (pfd == null ? null :pfd.getFileDescriptor());
}
}