-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update tquic version to v0.15.0 (#14)
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule tquic
updated
23 files
+32 −0 | CHANGELOG.md | |
+2 −2 | Cargo.toml | |
+3 −2 | cbindgen.toml | |
+229 −125 | include/tquic.h | |
+116 −0 | include/tquic_def.h | |
+27 −11 | src/build.rs | |
+42 −10 | src/congestion_control/bbr.rs | |
+9 −7 | src/congestion_control/bbr3.rs | |
+6 −31 | src/congestion_control/congestion_control.rs | |
+9 −6 | src/congestion_control/copa.rs | |
+19 −11 | src/congestion_control/cubic.rs | |
+45 −4 | src/congestion_control/dummy.rs | |
+35 −23 | src/congestion_control/pacing.rs | |
+28 −12 | src/connection/connection.rs | |
+13 −8 | src/connection/recovery.rs | |
+9 −0 | src/connection/space.rs | |
+7 −2 | src/connection/stream.rs | |
+14 −5 | src/endpoint.rs | |
+150 −0 | src/ffi.rs | |
+103 −29 | src/lib.rs | |
+109 −33 | src/packet.rs | |
+0 −1 | src/tls/tls.rs | |
+2 −2 | tools/Cargo.toml |