Andrii Dmytrenko
Andrii Dmytrenko
You need to define the board in `boards.txt` file and define a variant in `variants/_variant_name_/` folder (see other variants). Variants are pretty simple, you just define a pin mapping (nRF52840...
@danielpclark Exciting! Do you need a help with this? Are we still waiting for `ruby-sys` ?
@davidpdrsn I did manage to make it work for us with the following changes (although 1 example and tests do not compile with some type errors). https://github.com/fetlife/tower-http/commit/f2843286d31c08b755c3c983b003fa736859c666 It doesn't handle...
Hi @emk , I'm glad to hear that you find this library useful. Heartbeat is indeed one of the missing features. It should not be that hard to implement. 1....
Oh. Good catch. For now the client just ignores this parameter, and still waits for the reply from the server. Instead, it should not wait for the reply and continue....
At the moment it's not straight forward to do, because we clone connection for a reading loop and for channel writes. Since openssl v0.9, the `try_clone` method was removed from...
@Keruspe the biggest issue here is that new `SslStream` does not implement `clone` or `try_clone`. Thus making multithreaded reads and writes impossible. I need to completely rewrite frames reading/dispatching code...
@grahamc Mutex won't work, since it will lock socket for reading as well and will result in the deadlock.
Hi, I was working at this some time ago, but tokio was changing every day and it was a bit hard to keep up. Also I'm not sure about the...
This doesn't really upgrade to the latest openssl, as adding `panic` makes it TLS mode completely non-functional. I removed `tls` feature from the list of default features, this should make...