-
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.
2. Create TlsConfig using quic_tls_config_new which is recommended
- Loading branch information
1 parent
32906aa
commit 5e2e093
Showing
3 changed files
with
13 additions
and
102 deletions.
There are no files selected for viewing
Submodule tquic
updated
22 files
+23 −0 | .github/workflows/rust.yml | |
+5 −0 | .github/workflows/tquic-benchmark.yml | |
+13 −0 | CHANGELOG.md | |
+4 −1 | Cargo.toml | |
+1 −1 | cbindgen.toml | |
+34 −17 | include/tquic.h | |
+12 −30 | include/tquic_def.h | |
+25 −1 | src/build.rs | |
+59 −5 | src/connection/connection.rs | |
+45 −6 | src/connection/path.rs | |
+2 −2 | src/connection/recovery.rs | |
+39 −0 | src/connection/rtt.rs | |
+0 −1 | src/endpoint.rs | |
+165 −24 | src/ffi.rs | |
+1 −1 | src/h3/qpack/huffman.rs | |
+4 −4 | src/lib.rs | |
+62 −0 | src/tls/boringssl/tls.rs | |
+0 −1 | src/tls/tls.rs | |
+1 −0 | src/token.rs | |
+5 −3 | tools/Cargo.toml | |
+1 −0 | tools/src/bin/tquic_client.rs | |
+1 −0 | tools/src/bin/tquic_server.rs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters