mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-29 21:34:44 +02:00
Get proper socket fd
This commit is contained in:
@@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user