-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule quicly
updated
34 files
+32 −0 | .github/workflows/ci.yml | |
+21 −7 | CMakeLists.txt | |
+1 −1 | README.md | |
+1 −1 | deps/picotls | |
+109 −19 | include/quicly.h | |
+44 −21 | include/quicly/cc.h | |
+12 −6 | include/quicly/cid.h | |
+4 −3 | include/quicly/constants.h | |
+1 −0 | include/quicly/defaults.h | |
+13 −12 | include/quicly/frame.h | |
+2 −2 | include/quicly/loss.h | |
+1 −1 | include/quicly/maxsender.h | |
+116 −0 | include/quicly/rate.h | |
+24 −1 | include/quicly/sentmap.h | |
+28 −6 | lib/cc-cubic.c | |
+178 −0 | lib/cc-pico.c | |
+42 −13 | lib/cc-reno.c | |
+17 −28 | lib/defaults.c | |
+10 −5 | lib/loss.c | |
+513 −261 | lib/quicly.c | |
+157 −0 | lib/rate.c | |
+8 −4 | lib/sendstate.c | |
+24 −0 | misc/docker-ci.mk | |
+58 −19 | misc/probe2trace.pl | |
+20 −1 | quicly-probes.d | |
+203 −1 | quicly.xcodeproj/project.pbxproj | |
+64 −40 | src/cli.c | |
+5 −0 | t/assets/ec256-key-pair.pem | |
+4 −0 | t/assets/ec256-pub.pem | |
+15 −3 | t/e2e.t | |
+113 −0 | t/rate.c | |
+676 −0 | t/simulator.c | |
+138 −5 | t/test.c | |
+1 −0 | t/test.h |