You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
libtorrent by default allows to implement custom storage https://www.libtorrent.org/reference-Custom_Storage.html. One idea is to implement a storage that works with raw file descriptors, not filesystem paths. Is it possible? This could solve some problems, for example, add support for the Android Storage Access Framework, which only provides access to file descriptors.
The text was updated successfully, but these errors were encountered:
I explored this idea in the past. The problem at that moment was that you need to provide almost a full re-implementation of the storage vs just overriding the interaction with the filesystem. The interaction with and assumption that you are in a posix-compatible system is hard to isolate.
libtorrent
by default allows to implement custom storage https://www.libtorrent.org/reference-Custom_Storage.html. One idea is to implement a storage that works with raw file descriptors, not filesystem paths. Is it possible? This could solve some problems, for example, add support for the Android Storage Access Framework, which only provides access to file descriptors.The text was updated successfully, but these errors were encountered: