Max Inden
Max Inden
### Summary Mergify seems to continously approve already approved pull requests. See e.g. https://github.com/libp2p/rust-libp2p/pull/5206. ### Expected behavior Approve once. ### Actual behavior Approve ~ every mintue. ### Relevant log output...
Add support for `/ipcidr`. See specification added with https://github.com/multiformats/multiaddr/pull/129. Motivation is to specify address ranges to (a) not announce or (b) not dial in https://github.com/mxinden/rust-libp2p-server/ used as an IPFS bootstrap...
Sample use-case: - Roll out of new `Protocol::X`. - Old DHT nodes should forward `Multiaddr`s with `Protocol::X` of new nodes even though they can't parse the `Multiaddr`. Currently they don't....
Tracking next steps to do the `/webrtc` -> `/webrtc-direct` rename (https://github.com/multiformats/multiaddr/pull/150#issuecomment-1468791586) with potential for collision with the introduction of `/webrtc` (browser-to-browser) https://github.com/multiformats/rust-multiaddr/pull/79. - [x] Release https://github.com/multiformats/rust-multiaddr/pull/84 as non-breaking change -...
_Unsolicited feedback. Feel free to ignore._ Given that you are supporting a single authentication protocol only, you might want to consider using `Version::V1Lazy` instead of `V1`, potentially saving you one...
Previously the stream send and receive window had a hard limit at 1MB. On high latency and/or high bandwidth connections (i.e. large bandwidth-delay product), 1 MB is not enough to...
This commit adds a basic smoke test using the `test-fixture` simulator, asserting that on a connection with unlimited bandwidth and 50ms round-trip-time Neqo can eventually achieve > 1 Gbit/s throughput....
### Summary Explore multi-packet at (a) the I/O layer (`sendmmsg`, `recvmmsg`, GSO, GRO) and (b) within the Neqo state machines. ### Very early draft Have a fixed sized send and...
Write and read up to `BATCH_SIZE` datagrams with single `sendmmsg` and `recvmmsg` syscall. Previously `neqo_bin::udp::Socket::send` would use `sendmmsg`, but provide a single buffer to write into only, effectively using `sendmsg`...