Commit fcc5c4b
authored
Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from
`d88faa4` to `8670e83`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/s2n-quic/commit/8670e83da211151a35ad72bc22b6e5eeb3331e13"><code>8670e83</code></a>
feat(s2n-quic-dc): Support storing ApplicationData in Entry (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2515">#2515</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/c82daf73b0216ba078b3620eb0cb4530da60bb3b"><code>c82daf7</code></a>
fix(s2n-quic-transport): allow migrations even when
disable_active_migration ...</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/a9e76738eeb9876e3b7f9e427b4e0a32d4086d37"><code>a9e7673</code></a>
feat(s2n-quic-dc): implement recv path packet pool (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2483">#2483</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/7d935aa871607b3e530e4836c985e04eb224eb48"><code>7d935aa</code></a>
refactor(s2n-quic-dc): rename stream_id to queue_id (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2507">#2507</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/1a1dfa8150d33dd95ce83c74bbc4220e9a909a57"><code>1a1dfa8</code></a>
feat(s2n-quic-dc): Add subscriber event for dc::Path creation (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2510">#2510</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/1605dc7179134f3ae59e40f9b825495bf914a2d5"><code>1605dc7</code></a>
feat(s2n-quic): implement updatable connection limits (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2508">#2508</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/fbcc8fd6e814fbc1394764a34bbefee503b98165"><code>fbcc8fd</code></a>
fix: typo for debugging book (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2509">#2509</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/70e8de817162ed33c9b6425eaa6bbe8f82d2db0d"><code>70e8de8</code></a>
feat: add stream recv buffer trait and impls (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2505">#2505</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/4d60027467b5bbbc335ee5a4558d5f0dde1ae85a"><code>4d60027</code></a>
feat(s2n-quic-dc): add mpsc channel (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2503">#2503</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/s2n-quic/compare/d88faa482544f916c90b3d65f754591edd099667...8670e83da211151a35ad72bc22b6e5eeb3331e13">compare
view</a></li>
</ul>
</details>
<br />
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent cb01c7b commit fcc5c4b
1 file changed
+1
-1
lines changed- dc/s2n-quic-dc/Cargo.toml+14-7
- dc/s2n-quic-dc/src/packet/stream/id.rs+5-5
- dc/s2n-quic-dc/src/path/secret/map.rs+14-1
- dc/s2n-quic-dc/src/path/secret/map/entry.rs+20-1
- dc/s2n-quic-dc/src/path/secret/map/entry/tests.rs+1-1
- dc/s2n-quic-dc/src/path/secret/map/handshake.rs+6-1
- dc/s2n-quic-dc/src/path/secret/map/state.rs+45-1
- dc/s2n-quic-dc/src/path/secret/map/state/tests.rs+1
- dc/s2n-quic-dc/src/path/secret/map/store.rs+14-1
- dc/s2n-quic-dc/src/socket.rs+2
- dc/s2n-quic-dc/src/socket/recv.rs+7
- dc/s2n-quic-dc/src/socket/recv/__fuzz__/socket__recv__pool__tests__model/corpus.tar.gz+3
- dc/s2n-quic-dc/src/socket/recv/descriptor.rs+478
- dc/s2n-quic-dc/src/socket/recv/pool.rs+495
- dc/s2n-quic-dc/src/socket/recv/router.rs+196
- dc/s2n-quic-dc/src/socket/recv/udp.rs+34
- dc/s2n-quic-dc/src/stream/client/tokio.rs+11-1
- dc/s2n-quic-dc/src/stream/endpoint.rs+18-13
- dc/s2n-quic-dc/src/stream/recv.rs+1
- dc/s2n-quic-dc/src/stream/recv/application.rs+13-15
- dc/s2n-quic-dc/src/stream/recv/application/builder.rs+1-1
- dc/s2n-quic-dc/src/stream/recv/buffer.rs+85
- dc/s2n-quic-dc/src/stream/recv/buffer/dispatch.rs+55
- dc/s2n-quic-dc/src/stream/recv/buffer/local.rs+230
- dc/s2n-quic-dc/src/stream/recv/shared.rs+212-341
- dc/s2n-quic-dc/src/stream/recv/worker.rs+2-2
- dc/s2n-quic-dc/src/stream/send/application.rs+2-2
- dc/s2n-quic-dc/src/stream/server/handshake.rs+7-8
- dc/s2n-quic-dc/src/stream/server/tokio/accept.rs+1-1
- dc/s2n-quic-dc/src/stream/server/tokio/stats.rs+1-1
- dc/s2n-quic-dc/src/stream/server/tokio/tcp/worker.rs+8-3
- dc/s2n-quic-dc/src/stream/server/tokio/udp.rs+8-4
- dc/s2n-quic-dc/src/sync.rs+2-1
- dc/s2n-quic-dc/src/sync/mpmc.rs+145-4
- dc/s2n-quic-dc/src/sync/mpsc.rs+300
- dc/s2n-quic-dc/src/sync/ring_deque.rs+117-9
- dc/s2n-quic-dc/src/testing.rs+18
- dc/wireshark/generate-bindings.sh+1-1
- dc/wireshark/src/dissect.rs+2-2
- dc/wireshark/src/field.rs+3-3
- dc/wireshark/src/test.rs+2-2
- docs/user-guide/debugging-pcap.md+1-1
- quic/s2n-quic-core/events/common.rs+4
- quic/s2n-quic-core/events/connection.rs+8
- quic/s2n-quic-core/src/connection/limits.rs+64-1
- quic/s2n-quic-core/src/event.rs+9
- quic/s2n-quic-core/src/event/generated.rs+114
- quic/s2n-quic-core/src/event/generated/metrics.rs+15
- quic/s2n-quic-core/src/event/generated/metrics/aggregate.rs+192-170
- quic/s2n-quic-core/src/event/generated/metrics/probe.rs+51-48
- quic/s2n-quic-transport/src/connection/connection_container/tests.rs+5
- quic/s2n-quic-transport/src/connection/connection_impl.rs+13-1
- quic/s2n-quic-transport/src/connection/connection_trait.rs+11
- quic/s2n-quic-transport/src/connection/mod.rs+2
- quic/s2n-quic-transport/src/endpoint/initial.rs+3
- quic/s2n-quic-transport/src/endpoint/mod.rs+4
- quic/s2n-quic-transport/src/path/manager.rs+6-18
- quic/s2n-quic-transport/src/path/manager/snapshots/path__manager__tests__active_connection_migration_disabled__events.snap+3-2
- quic/s2n-quic-transport/src/path/manager/tests.rs+32-13
- quic/s2n-quic-transport/src/space/mod.rs+4
- quic/s2n-quic-transport/src/space/session_context.rs+29-7
- quic/s2n-quic/src/provider/limits.rs+3-1
- quic/s2n-quic/src/tests.rs+1
- quic/s2n-quic/src/tests/connection_limits.rs+50
- quic/s2n-quic/src/tests/snapshots/tests__dc__dc_handshake_self_test__events.snap+2
- quic/s2n-quic/src/tests/snapshots/tests__dc__dc_mtls_handshake_auth_failure_self_test__events.snap+2
- quic/s2n-quic/src/tests/snapshots/tests__dc__dc_mtls_handshake_self_test__events.snap+2
- quic/s2n-quic/src/tests/snapshots/tests__dc__dc_not_secret_control_packet__events.snap+2
- quic/s2n-quic/src/tests/snapshots/tests__dc__dc_secret_control_packet__events.snap+2
0 commit comments