Skip to content

Commit

Permalink
Bump tests/perf/s2n-quic from 192de7d to 65d55a4 (#3678)
Browse files Browse the repository at this point in the history
Bumps [tests/perf/s2n-quic](https://github.com/aws/s2n-quic) from
`192de7d` to `65d55a4`.
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/aws/s2n-quic/commit/65d55a48ae4916c2a0c4ab9a90631668ba8ea23f"><code>65d55a4</code></a>
test(s2n-quic-dc): add tests for map events (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2363">#2363</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/fcdb9142a898764816d52f5a09b6e9eb26a0dff8"><code>fcdb914</code></a>
feat(s2n-quic-dc): add map events (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2362">#2362</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/fad92d2b6d54673ff65cc9c2bd82e21399d4663f"><code>fad92d2</code></a>
fix(s2n-quic-core): always wake application on available datagram
capacity (#...</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/afc56cd96b7693179bce0e2bc110f184db1f109c"><code>afc56cd</code></a>
refactor(s2n-quic-dc): put map impl behind trait (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2361">#2361</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/e2ac09e6d4483a509e15357eb4a5df5990b040f0"><code>e2ac09e</code></a>
feat(s2n-quic-dc): export event module (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2360">#2360</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/01cbb44d6d9cb36723b44f4cb16afc9f494b9be2"><code>01cbb44</code></a>
fix(s2n-quic-dc): wait to insert in peer map until handshake completes
(<a
href="https://redirect.github.com/aws/s2n-quic/issues/2358">#2358</a>)</li>
<li><a
href="https://github.com/aws/s2n-quic/commit/6c7057f68d76724266a952868574874a62225a6e"><code>6c7057f</code></a>
feat(s2n-quic-platform): emit socket events (<a
href="https://redirect.github.com/aws/s2n-quic/issues/2356">#2356</a>)</li>
<li>See full diff in <a
href="https://github.com/aws/s2n-quic/compare/192de7d2efb5a0eceab79f68870b162a1ecb1986...65d55a48ae4916c2a0c4ab9a90631668ba8ea23f">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>
  • Loading branch information
dependabot[bot] authored Nov 4, 2024
1 parent 3ea62b5 commit 2d39d37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/perf/s2n-quic
Submodule s2n-quic updated 67 files
+1 −0 .gitignore
+10 −0 dc/s2n-quic-dc/events/common.rs
+20 −0 dc/s2n-quic-dc/events/connection.rs
+11 −0 dc/s2n-quic-dc/events/endpoint.rs
+234 −0 dc/s2n-quic-dc/events/map.rs
+30 −0 dc/s2n-quic-dc/src/event.rs
+0 −10 dc/s2n-quic-dc/src/event/events.rs
+3,580 −265 dc/s2n-quic-dc/src/event/generated.rs
+5 −3 dc/s2n-quic-dc/src/fixed_map.rs
+1 −0 dc/s2n-quic-dc/src/lib.rs
+107 −926 dc/s2n-quic-dc/src/path/secret/map.rs
+117 −0 dc/s2n-quic-dc/src/path/secret/map/cleaner.rs
+303 −0 dc/s2n-quic-dc/src/path/secret/map/entry.rs
+21 −0 dc/s2n-quic-dc/src/path/secret/map/entry/tests.rs
+112 −0 dc/s2n-quic-dc/src/path/secret/map/event_tests.rs
+156 −0 dc/s2n-quic-dc/src/path/secret/map/handshake.rs
+33 −0 dc/s2n-quic-dc/src/path/secret/map/size_of.rs
+38 −0 dc/s2n-quic-dc/src/path/secret/map/snapshots/path__secret__map__event_tests__control_packets__events.snap
+6 −0 dc/s2n-quic-dc/src/path/secret/map/snapshots/path__secret__map__event_tests__init_uninit__events.snap
+8 −0 dc/s2n-quic-dc/src/path/secret/map/snapshots/path__secret__map__event_tests__insert_one__events.snap
+548 −0 dc/s2n-quic-dc/src/path/secret/map/state.rs
+6 −0 ...n-quic-dc/src/path/secret/map/state/snapshots/path__secret__map__state__tests__thread_shutdown__events.snap
+54 −74 dc/s2n-quic-dc/src/path/secret/map/state/tests.rs
+90 −0 dc/s2n-quic-dc/src/path/secret/map/status.rs
+97 −0 dc/s2n-quic-dc/src/path/secret/map/store.rs
+8 −2 dc/s2n-quic-dc/src/stream/recv/shared.rs
+5 −1 dc/s2n-quic-dc/src/stream/send/worker.rs
+0 −0 quic/s2n-quic-core/events/common.rs
+0 −0 quic/s2n-quic-core/events/connection.rs
+0 −0 quic/s2n-quic-core/events/endpoint.rs
+35 −0 quic/s2n-quic-core/events/platform.rs
+92 −25 quic/s2n-quic-core/src/datagram/default.rs
+4 −0 quic/s2n-quic-core/src/dc/disabled.rs
+8 −0 quic/s2n-quic-core/src/dc/testing.rs
+12 −0 quic/s2n-quic-core/src/dc/traits.rs
+42 −0 quic/s2n-quic-core/src/event.rs
+1,754 −446 quic/s2n-quic-core/src/event/generated.rs
+17 −1 quic/s2n-quic-core/src/event/snapshot.rs
+26 −8 quic/s2n-quic-core/src/io/event_loop.rs
+108 −865 quic/s2n-quic-events/src/main.rs
+652 −0 quic/s2n-quic-events/src/output.rs
+321 −0 quic/s2n-quic-events/src/output_mode.rs
+118 −25 quic/s2n-quic-events/src/parser.rs
+10 −3 quic/s2n-quic-platform/src/io/testing.rs
+51 −13 quic/s2n-quic-platform/src/io/testing/socket.rs
+24 −4 quic/s2n-quic-platform/src/io/tokio.rs
+9 −3 quic/s2n-quic-platform/src/io/tokio/task.rs
+15 −5 quic/s2n-quic-platform/src/io/tokio/task/simple.rs
+9 −4 quic/s2n-quic-platform/src/io/tokio/task/unix.rs
+13 −4 quic/s2n-quic-platform/src/io/turmoil.rs
+13 −5 quic/s2n-quic-platform/src/io/xdp.rs
+20 −0 quic/s2n-quic-platform/src/io/xdp/builder.rs
+1 −0 quic/s2n-quic-platform/src/socket.rs
+284 −0 quic/s2n-quic-platform/src/socket/stats.rs
+0 −189 quic/s2n-quic-platform/src/socket/std.rs
+6 −3 quic/s2n-quic-platform/src/socket/task/rx.rs
+12 −3 quic/s2n-quic-platform/src/socket/task/tx.rs
+8 −1 quic/s2n-quic-platform/src/syscall.rs
+22 −4 quic/s2n-quic-platform/src/syscall/mmsg.rs
+22 −5 quic/s2n-quic-platform/src/syscall/msg.rs
+4 −1 quic/s2n-quic-qns/src/xdp.rs
+2 −0 quic/s2n-quic-transport/src/dc/manager.rs
+4 −0 quic/s2n-quic-transport/src/dc/manager/tests.rs
+1 −0 quic/s2n-quic/src/tests.rs
+37 −0 quic/s2n-quic/src/tests/platform_events.rs
+27 −0 quic/s2n-quic/src/tests/snapshots/platform_events__client.snap
+25 −0 quic/s2n-quic/src/tests/snapshots/platform_events__server.snap

0 comments on commit 2d39d37

Please sign in to comment.