Max Inden

Results 123 issues of Max Inden

Pendant to https://github.com/quinn-rs/quinn/pull/1950. Fixes https://github.com/mozilla/neqo/issues/2028.

- Benchmark all permutations of GSO, GRO and `recvmmsg`. - Add support for all platforms. - Add test-run (i.e. `cargo test --benches`, single execution in debug mode) to CI.

`neqo-bin` has a benchmark for download throughput, requests per second, handshakes per second and upload throughput. Previously this was specified the following way, where the `usize` in `requests` could be...

`neqo-bin` has a benchmark for download throughput, requests per second, handshakes per second and upload throughput. Previously this was specified as: ``` rust struct Benchmark { name: String, requests: Vec,...

Currently we probe a path up to 6 times, i.e. 3 times with ECN, 3 times without ECN. https://github.com/mozilla/neqo/blob/99144585db35fb7dd7e60a78019df5d184ecad51/neqo-transport/src/path.rs#L35-L39 On Firefox Nightly we see around ~2% of connection attempts seeing...

GitHub Actions now provide Windows ARM64 runners: https://github.blog/changelog/2025-04-14-windows-arm64-hosted-runners-now-available-in-public-preview/ Related: https://bugzilla.mozilla.org/show_bug.cgi?id=1931918

blocked

Attempt 1: https://github.com/mozilla/neqo/commit/f25b0b77ff579b56a4ea882a3ca70404b3c38b03 Attempt 2: https://github.com/mozilla/neqo/pull/2532/ Compared to attempt 2: - implements the datagram batching in `neqo-transport` instead of `neqo-bin` - does not copy each datagram in the larger GSO...

Fixes https://github.com/mozilla/neqo/issues/2490. Only start ECN marking and thus ECN-Path validation when: - Connection handshake is _confirmed_. - AND, for any secondary path, path is validated (e.g. via `PATH_RESPONSE`). ---- **Draft...

The `codecov/test-results-action` fails on `check (ubuntu-24.04-arm, stable, debug)` with: ``` /home/runner/work/_actions/codecov/test-results-action/f2dba722c67b86c6caa034178c6e4d35335f6706/dist/codecov: 1: Syntax error: ")" unexpected ``` https://github.com/mozilla/neqo/actions/runs/14427419979/job/40458100221?pr=2580 This might explain why on pull requests we see less codecoverage resports,...

> Error codes of the format 0x1f * N + 0x21 for non-negative integer values of N are reserved to exercise the requirement that unknown error codes be treated as...