Nikolaus Rath
Nikolaus Rath
The documentation and discussion in issue #550 leaves me with the impression that trio is installing some signal handlers. This concerns me, because I would like to use trio in...
I'm looking at https://cryptography.io/en/latest/fernet/, and I'm wondering how to use this API if I want to encrypt _a lot_ of data. I hope that I can simply call encrypt in...
I feel like I am missing something obvious, but how can I catch exceptions from `parse()` without having to put all my option handling code into the `try..catch` block? C++...
When trying to run sslsniff, all I get is: $ sudo iptables -t nat -A OUTPUT -p tcp --destination-port 443 -j REDIRECT --to-ports 8081 $ sslsniff -a -c ca.pem -s...
With at least Python 3.7.1 and today's cpython Git master, we get: ``` test/test_examples.py::test_hello[hello.py] FAILED [ 46%] [...] ------------------------------------ Captured stderr call ------------------------------------ ==31074== Memcheck, a memory error detector ==31074==...
Currently, the `passthrough` example file system doesn't actually make use of async I/O. We should rework this to use trio's file I/O layer.
We should take a look at the following patch, it may be worth merging: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=720455
As said in issue #72, it seems that sshfs fails to notice problems when reading from a file that was opened write-only. According to https://lists.mindrot.org/pipermail/openssh-unix-dev/2017-August/036171.html, the OpenSSH server seems to...
SFTP does provide link counts, so we should use these numbers for st_nlink.
SFTP transfers file attributes on readdir(), so we should really pass this information on to FUSE. Don't forget to also add this in the caching layer!