Junho Choi (최준호)
Junho Choi (최준호)
When GSO can be enabled (on a supported linux platform), now quiche-server sends multiple packets using sendmsg() with GSO. For non-supported platforms, it should work same as before. This PR...
This PR is implementing BBR v2 congestion control algorithm specified in [draft-cardwell-iccrg-bbr-congestion-control-02](https://datatracker.ietf.org/doc/html/draft-cardwell-iccrg-bbr-congestion-control-02), based on #1180. Mostly as-is translation of the draft, might be buggy and not well tested. Also it...
Implementing `bbr` congestion control algorithm module. To try this module, you'll need `quiche-server` supports packet pacing only with `SO_TXTIME` feature in recent linux kernel (#1138). Also you'll need to configure...
While I read the some of the event definitions, I have some questions: https://github.com/quicwg/qlog/blob/main/draft-ietf-quic-qlog-quic-events.md#L312 ``` src_port?: uint32, dst_port?: uint32, ``` `uint16` for udp port numbers (https://datatracker.ietf.org/doc/html/rfc768) looks good enough. https://github.com/quicwg/qlog/blob/main/draft-ietf-quic-qlog-quic-events.md#L1106...
- FreeBSD is experimental support in `cross` release, so try to specify a docker image in Cross.toml. - `cargo test` is failing (https://github.com/rust-embedded/cross/issues/220), so only `build` is enabled.
Add `macos-latest-xlarge` target for building on Apple Sillicon macOS.
Alternative to #1473. Also fixed the test which I believe it's correct. Previously `bbr_enter_recovery()` used old `newly_acked_bytes` to set a new cwnd when the recovery starts. To prevent this from...
Using cdylib-link-lines, add soname to the generated shlibs. It will add the following to libquiche.so: ``` % readelf -d target/debug/libquiche.so ... 0x000000000000000e (SONAME) Library soname: [libquiche.so.0] ``` For linux, *bsd,...
Do the checklist before filing an issue: * [x] Is this related to the actions-rs Actions? If not, use GitHub Community forum to ask questions about Actions in a whole:...
Do the checklist before filing an issue: * [x] Is this related to the actions-rs Actions? If not, use GitHub Community forum to ask questions about Actions in a whole:...