Skip to content

Commit

Permalink
Bump msquic from 82b1785 to 2581bc5 (#70)
Browse files Browse the repository at this point in the history
Bumps [msquic](https://github.com/microsoft/msquic) from `82b1785` to `2581bc5`.
- [Release notes](https://github.com/microsoft/msquic/releases)
- [Commits](microsoft/msquic@82b1785...2581bc5)

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

Signed-off-by: dependabot[bot] <[email protected]>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Oct 30, 2022
1 parent af74242 commit a294918
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msquic
Submodule msquic updated 78 files
+9 −0 .azure/azure-pipelines.ci.yml
+2 −1 .azure/templates/run-bvt.yml
+1 −1 .github/workflows/check-clog.yml
+1 −1 .github/workflows/check-dotnet.yml
+2 −2 .github/workflows/codeql-analysis.yml
+1 −1 .github/workflows/plugins.yml
+1 −1 .github/workflows/scorecards-analysis.yml
+1 −0 .gitignore
+74 −49 CMakeLists.txt
+17 −4 docs/Deployment.md
+1 −0 docs/Settings.md
+9 −2 docs/api/QUIC_SETTINGS.md
+3 −1 docs/api/StreamReceiveComplete.md
+9 −0 scripts/build.ps1
+ src/bin/winuser/pgo_x64/msquic.openssl.pgd
+ src/bin/winuser/pgo_x64/msquic.schannel.pgd
+ src/bin/winuser/pgo_x64/msquic.schannel.xdp.pgd
+19 −1 src/core/connection.c
+3 −2 src/core/library.c
+67 −4 src/core/loss_detection.c
+5 −2 src/core/packet_builder.c
+5 −0 src/core/packet_builder.h
+6 −0 src/core/packet_space.h
+2 −1 src/core/path.c
+44 −0 src/core/path.h
+7 −0 src/core/quicdef.h
+22 −0 src/core/send.c
+6 −0 src/core/send.h
+1 −0 src/core/sent_packet_metadata.h
+74 −7 src/core/settings.c
+13 −9 src/core/settings.h
+4 −0 src/core/unittest/SettingsTest.cpp
+57 −10 src/cs/lib/msquic_generated.cs
+19 −4 src/generated/CMakeLists.txt
+20 −0 src/generated/linux/connection.c.clog.h
+23 −0 src/generated/linux/connection.c.clog.h.lttng.h
+49 −0 src/generated/linux/loss_detection.c.clog.h
+65 −0 src/generated/linux/loss_detection.c.clog.h.lttng.h
+22 −0 src/generated/linux/send.c.clog.h
+19 −0 src/generated/linux/send.c.clog.h.lttng.h
+45 −0 src/generated/linux/settings.c.clog.h
+48 −0 src/generated/linux/settings.c.clog.h.lttng.h
+123 −0 src/generated/stdout/quic_trace.c
+11 −4 src/inc/msquic.h
+1 −0 src/inc/msquic.hpp
+103 −45 src/inc/quic_trace.h
+66 −0 src/manifest/MsQuicEtw.man
+168 −0 src/manifest/clog.sidecar
+2 −1 src/perf/lib/HpsClient.h
+1 −0 src/perf/lib/PerfCommon.h
+2 −1 src/perf/lib/PerfServer.h
+2 −1 src/perf/lib/RpsClient.h
+4 −0 src/perf/lib/SecNetPerfMain.cpp
+2 −1 src/perf/lib/ThroughputClient.h
+9 −0 src/platform/inline.c
+2 −0 src/plugins/trace/dll/DataModel/QuicEvent.cs
+2 −2 src/plugins/trace/dll/Properties/launchSettings.json
+1 −0 src/plugins/trace/dll/Tables/QuicConnectionTable.cs
+2 −0 src/plugins/trace/dll/Tables/QuicExecutionTable.cs
+5 −0 src/plugins/trace/dll/Tables/QuicNetworkTable.cs
+2 −0 src/plugins/trace/dll/Tables/QuicSchedulingTable.cs
+1 −0 src/plugins/trace/dll/Tables/QuicStreamStateTable.cs
+2 −0 src/plugins/trace/dll/Tables/QuicTxBlockedTable.cs
+2 −0 src/plugins/trace/dll/Tables/QuicWorkerActivityTable.cs
+2 −2 src/plugins/trace/exe/QuicTrace.csproj
+2 −3 src/plugins/trace/exe/SingleFileAssemblyLoader.cs
+9 −1 src/test/MsQuicTests.h
+8 −0 src/test/bin/quic_gtest.cpp
+6 −0 src/test/bin/winkernel/control.cpp
+18 −4 src/test/lib/ApiTest.cpp
+182 −0 src/test/lib/DataTest.cpp
+10 −10 src/test/lib/EventTest.cpp
+17 −0 src/test/lib/TestConnection.cpp
+3 −0 src/test/lib/TestConnection.h
+20 −0 src/test/lib/TestHelpers.h
+2 −0 src/tools/etw/quicetw.h
+259 −87 src/tools/spin/spinquic.cpp
+1 −1 submodules/googletest

0 comments on commit a294918

Please sign in to comment.