Kai Lüke

Results 428 comments of Kai Lüke

I didn't touch the logic for ciphersuite selection with 1.2 and the fallbacks. Should we create an issue for that? Edit: No, it already exists: https://github.com/rust-lang/rustup/issues/2581

This got discussed in https://github.com/rust-lang/www.rust-lang.org/pull/1670 - I'm fine with closing this if it shouldn't stay open for the future.

I don't think that a global `ManageForeignRout...` entry is the right answer because systemd-networkd can still interfere with the manually configured network, depending on whether the default network configuration tries...

Ok, funny, so I guess we either need Unmanaged plus the additional global setting (not sure if it's a good idea to set it automatically or if the distro or...

On Flatcar the global systemd settings are now set by default to work around the problem. The interface should also be set Unmanaged now by default by I didn't double-check...

Maybe a threading backend could make use of https://github.com/stuglaser/pychan which supports python3 now.

Python 3.5 brings everything to par up with Go, but it looks quite different. Except that synchronous channels (aka queues) have to be simulated by a handshake and closing a...

``` #!/usr/bin/env python3.5 import asyncio # @TODO: goless.select via loop through send_ready, recv_ready class Chan: q = None # data channel x = None # sync channel for size=0 size...

Hey, I really don't know if it would be possible to use normal functions without `async def` or receiving/sending without `await`. The rest should be okay for writing a backend....

It was not as nice as I expected, but the run() at the end can be omitted by using a separate thread. Code is updated in the repo.