quininer

Results 189 comments of quininer

I tried the new `AsyncRead`/`AsyncWrite` API (from @carllerche). I think this is right way. ```rust pub trait AsyncRead { fn poll_read(&mut self, cx: &mut Context) -> Poll; } ``` This...

I decided not to implement the `AsyncRead`/`AsyncWrite` trait in 0.1.

I implemented [a simple OPAQUE prototype](https://github.com/noisat-labs/opaque).

@zer0x64 I never planned to release it as a crate, and when I made it, `opaque` did not have any standards, so I think it is good to have a...

you can try `pip install git+https://github.com/kitech/PyTox.git@newapi_tests`.

In X11 this can be implement with FixesExt, but I don't have much time. I'd be happy if someone could help. https://github.com/quininer/x11-clipboard/issues/3

You should use a raw pointer. like `*mut T` or `*const T`. It may be `*mut bool`,

You can generate getter/setter for union members and avoid internal structure leaks. This should be sufficient to ensure that API stable.

This is actually a use-after-free. You can see that 13L dropped `buf`, which causes the kernel to write data to the wrong memory (15L). That is, `submit` should be unsafe...