Highlights
- Arctic Code Vault Contributor
- Pro
Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign upPinned
1,163 contributions in the last year
Activity overview
Contribution activity
November 2020
Created 12 commits in 1 repository
Created a pull request in tokio-rs/tokio that received 1 comment
net: add TcpStream::ready and non-blocking ops
Adds function to await for readiness on the TcpStream and non-blocking read/write functions.
async fn TcpStream::ready(Interest) waits for socket r…
Opened 8 other pull requests in 1 repository
Reviewed 29 pull requests in 3 repositories
tokio-rs/tokio 24 pull requests
- fix `shutdown_timeout(0)` blocking
- time: use intrusive lists for timer tracking
- Add AsyncFd::new_with_interest
- io: reintroduce vectored writes
- net: reintroduce getter/setter for SO_LINGER to tokio::net::tcp::stream
- net: expose keepalive configuration on `TcpSocket`
- net: Add send/recv buf size methods to `TcpSocket`
- net: restore TcpStream::{poll_read_ready, poll_write_ready}
- Avoid pinning notified future
- chore: update pin-project-lite to 0.2.0
- Prepare 0.2.23 release
- ci: minimal version check (v0.2.x)
- ci: minimal version check
- chore: prepare tokio-macros v0.2.6
- Document maximum sleep duration
- process: fix potential file descriptor leak
- Add documentation regarding futures' StreamExt
- io: driver internal cleanup
- tokio-sync: add acquire_many and try_acquire_many methods to Sempahore
- io: update AsyncFd to use Registration
- async_fd: make into_inner() deregister the fd
- runtime: Remove last slab dependency
- rt: bring back a public Handle type
- Add missing Send bound
tokio-rs/mio 4 pull requests
tokio-rs/loom 1 pull request
Created an issue in ctz/rustls that received 1 comment
write_vectored implementation are not atomic
rustls/rustls/src/server/mod.rs Lines 682 to 684 in 716e7ec
write_vectored should not write buffers in a loop. An error can happen in th…