Skip to content

Commit

Permalink
Bump msquic from 64c17f8 to b092984
Browse files Browse the repository at this point in the history
Bumps [msquic](https://github.com/microsoft/msquic) from `64c17f8` to `b092984`.
- [Release notes](https://github.com/microsoft/msquic/releases)
- [Commits](microsoft/msquic@64c17f8...b092984)

---
updated-dependencies:
- dependency-name: msquic
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Aug 13, 2023
1 parent b2d575c commit 7e2257c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msquic
Submodule msquic updated 87 files
+1 −1 .azure/azure-pipelines.perf.yml
+3 −3 .azure/obtemplates/build-linux.yml
+1 −1 .azure/obtemplates/build-winuser-xdp.yml
+4 −4 .azure/obtemplates/build-winuser.yml
+1 −1 .azure/obtemplates/run-bvt.yml
+877 −18,340 .azure/openssl.gdnsuppress
+2 −1 .github/workflows/build-reuse-darwin-framework.yml
+0 −1 .github/workflows/build-reuse-unix.yml
+1 −2 .github/workflows/build-reuse-win.yml
+0 −1 .github/workflows/build-reuse-winkernel.yml
+2 −2 .github/workflows/cargo.yml
+1 −1 .github/workflows/code-coverage.yml
+1 −1 .github/workflows/codeql-analysis.yml
+1 −1 .github/workflows/docker-publish-xcomp.yml
+1 −1 .github/workflows/docker-publish.yml
+140 −0 .github/workflows/stress.yml
+1 −1 .github/workflows/test-down-level.yml
+2 −72 .github/workflows/test.yml
+1 −1 .sscignore
+0 −4 CMakeLists.txt
+5 −4 README.md
+9 −0 codecov.yml
+15 −6 docs/CredScan.md
+4 −1 scripts/build.ps1
+1 −1 scripts/package-nuget.ps1
+1 −2 scripts/performance.ps1
+16 −13 scripts/prepare-machine.ps1
+0 −3 scripts/xdp-devkit.json
+0 −71 scripts/xdp-install.ps1
+4 −0 scripts/xdp.json
+ src/bin/winuser/pgo_x64/msquic.openssl.pgd
+ src/bin/winuser/pgo_x64/msquic.openssl3.pgd
+ src/bin/winuser/pgo_x64/msquic.schannel.pgd
+ src/bin/winuser/pgo_x64/msquic.schannel.xdp.pgd
+56 −9 src/core/connection.c
+5 −2 src/core/connection.h
+36 −0 src/core/crypto_tls.c
+3 −3 src/core/cubic.c
+50 −0 src/core/frame.c
+37 −2 src/core/frame.h
+23 −0 src/core/library.c
+2 −2 src/core/listener.c
+2 −17 src/core/path.c
+7 −0 src/core/quicdef.h
+41 −52 src/core/send.c
+41 −0 src/core/settings.c
+3 −1 src/core/settings.h
+19 −0 src/core/unittest/FrameTest.cpp
+2 −0 src/core/unittest/SettingsTest.cpp
+8 −0 src/core/unittest/SpinFrame.cpp
+9 −0 src/core/unittest/TransportParamTest.cpp
+66 −6 src/cs/lib/msquic_generated.cs
+20 −0 src/generated/linux/connection.c.clog.h
+23 −0 src/generated/linux/connection.c.clog.h.lttng.h
+36 −0 src/generated/linux/crypto_tls.c.clog.h
+38 −0 src/generated/linux/crypto_tls.c.clog.h.lttng.h
+15 −0 src/generated/linux/settings.c.clog.h
+16 −0 src/generated/linux/settings.c.clog.h.lttng.h
+12 −2 src/inc/msquic.h
+1 −0 src/inc/msquic.hpp
+1 −0 src/inc/msquicp.h
+23 −18 src/inc/quic_datapath.h
+1 −1 src/inc/quic_platform_winuser.h
+114 −0 src/manifest/clog.sidecar
+56 −0 src/platform/datapath_epoll.c
+54 −0 src/platform/datapath_kqueue.c
+1 −1 src/platform/datapath_raw_linux.c
+11 −0 src/platform/datapath_raw_socket.c
+1 −1 src/platform/datapath_raw_win.c
+1 −1 src/platform/datapath_raw_xdp_win.c
+54 −0 src/platform/datapath_winkernel.c
+56 −0 src/platform/datapath_winuser.c
+18 −9 src/platform/unittest/DataPathTest.cpp
+26 −3 src/test/MsQuicTests.h
+52 −21 src/test/bin/quic_gtest.cpp
+53 −6 src/test/bin/quic_gtest.h
+18 −4 src/test/bin/winkernel/control.cpp
+76 −16 src/test/lib/ApiTest.cpp
+18 −18 src/test/lib/DataTest.cpp
+9 −0 src/test/lib/EventTest.cpp
+91 −2 src/test/lib/HandshakeTest.cpp
+5 −3 src/test/lib/MtuTest.cpp
+3 −0 src/test/lib/QuicDrill.cpp
+19 −0 src/test/lib/TestHelpers.h
+4 −0 src/tools/etw/quicetw.h
+6 −2 src/tools/spin/spinquic.cpp
+1 −1 submodules/googletest

0 comments on commit 7e2257c

Please sign in to comment.