@fails-components/webtransport 0.0.6 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CMakeLists.txt +11 -6
- package/package.json +1 -1
- package/platform/quiche_platform_impl/quic_udp_socket_winsock.cc +605 -523
- package/src/http3client.cc +86 -72
- package/src/http3client.h +6 -0
- package/src/http3dispatcher.cc +5 -3
- package/src/http3dispatcher.h +2 -1
- package/src/http3eventloop.cc +53 -37
- package/src/http3eventloop.h +18 -1
- package/src/http3server.cc +47 -10
- package/src/http3server.h +2 -1
- package/src/http3wtstreamvisitor.cc +8 -11
- package/src/webtransport.js +11 -3
- package/test/testsuite.js +8 -8
package/CMakeLists.txt
CHANGED
|
@@ -252,15 +252,23 @@ third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_io
|
|
|
252
252
|
third_party/quiche/quiche/common/print_elements.h
|
|
253
253
|
third_party/quiche/quiche/common/quiche_buffer_allocator.cc
|
|
254
254
|
third_party/quiche/quiche/common/quiche_buffer_allocator.h
|
|
255
|
+
third_party/quiche/quiche/common/quiche_crypto_logging.cc
|
|
256
|
+
third_party/quiche/quiche/common/quiche_crypto_logging.h
|
|
255
257
|
third_party/quiche/quiche/common/quiche_circular_deque.h
|
|
256
258
|
third_party/quiche/quiche/common/quiche_data_reader.cc
|
|
257
259
|
third_party/quiche/quiche/common/quiche_data_reader.h
|
|
258
260
|
third_party/quiche/quiche/common/quiche_data_writer.cc
|
|
259
261
|
third_party/quiche/quiche/common/quiche_data_writer.h
|
|
260
262
|
third_party/quiche/quiche/common/quiche_endian.h
|
|
263
|
+
third_party/quiche/quiche/common/quiche_ip_address.cc
|
|
264
|
+
third_party/quiche/quiche/common/quiche_ip_address.h
|
|
265
|
+
third_party/quiche/quiche/common/quiche_ip_address_family.cc
|
|
266
|
+
third_party/quiche/quiche/common/quiche_ip_address_family.h
|
|
261
267
|
third_party/quiche/quiche/common/quiche_linked_hash_map.h
|
|
262
268
|
third_party/quiche/quiche/common/quiche_mem_slice_storage.h
|
|
263
269
|
third_party/quiche/quiche/common/quiche_mem_slice_storage.cc
|
|
270
|
+
third_party/quiche/quiche/common/quiche_random.cc
|
|
271
|
+
third_party/quiche/quiche/common/quiche_random.h
|
|
264
272
|
third_party/quiche/quiche/common/quiche_text_utils.cc
|
|
265
273
|
third_party/quiche/quiche/common/quiche_text_utils.h
|
|
266
274
|
third_party/quiche/quiche/common/simple_buffer_allocator.cc
|
|
@@ -504,8 +512,6 @@ third_party/quiche/quiche/quic/core/crypto/quic_encrypter.cc
|
|
|
504
512
|
third_party/quiche/quiche/quic/core/crypto/quic_encrypter.h
|
|
505
513
|
third_party/quiche/quiche/quic/core/crypto/quic_hkdf.cc
|
|
506
514
|
third_party/quiche/quiche/quic/core/crypto/quic_hkdf.h
|
|
507
|
-
third_party/quiche/quiche/quic/core/crypto/quic_random.cc
|
|
508
|
-
third_party/quiche/quiche/quic/core/crypto/quic_random.h
|
|
509
515
|
third_party/quiche/quiche/quic/core/crypto/tls_client_connection.cc
|
|
510
516
|
third_party/quiche/quiche/quic/core/crypto/tls_client_connection.h
|
|
511
517
|
third_party/quiche/quiche/quic/core/crypto/tls_connection.cc
|
|
@@ -718,6 +724,8 @@ third_party/quiche/quiche/quic/core/quic_default_packet_writer.h
|
|
|
718
724
|
third_party/quiche/quiche/quic/core/quic_default_clock.cc
|
|
719
725
|
third_party/quiche/quiche/quic/core/quic_default_clock.h
|
|
720
726
|
third_party/quiche/quiche/quic/core/quic_default_connection_helper.h
|
|
727
|
+
third_party/quiche/quiche/quic/core/deterministic_connection_id_generator.h
|
|
728
|
+
third_party/quiche/quiche/quic/core/deterministic_connection_id_generator.cc
|
|
721
729
|
third_party/quiche/quiche/quic/core/quic_dispatcher.cc
|
|
722
730
|
third_party/quiche/quiche/quic/core/quic_dispatcher.h
|
|
723
731
|
third_party/quiche/quiche/quic/core/quic_error_codes.cc
|
|
@@ -819,10 +827,6 @@ third_party/quiche/quiche/quic/platform/api/quic_export.h
|
|
|
819
827
|
third_party/quiche/quiche/quic/platform/api/quic_exported_stats.h
|
|
820
828
|
third_party/quiche/quiche/quic/platform/api/quic_flag_utils.h
|
|
821
829
|
third_party/quiche/quiche/quic/platform/api/quic_flags.h
|
|
822
|
-
third_party/quiche/quiche/quic/platform/api/quic_ip_address.cc
|
|
823
|
-
third_party/quiche/quiche/quic/platform/api/quic_ip_address.h
|
|
824
|
-
third_party/quiche/quiche/quic/platform/api/quic_ip_address_family.cc
|
|
825
|
-
third_party/quiche/quiche/quic/platform/api/quic_ip_address_family.h
|
|
826
830
|
third_party/quiche/quiche/quic/platform/api/quic_logging.h
|
|
827
831
|
#third_party/quiche/quiche/quic/platform/api/quic_mem_slice.h
|
|
828
832
|
#third_party/quiche/quiche/quic/platform/api/quic_mem_slice_storage.cc
|
|
@@ -968,6 +972,7 @@ absl::synchronization
|
|
|
968
972
|
absl::time
|
|
969
973
|
absl::status
|
|
970
974
|
absl::statusor
|
|
975
|
+
absl::cleanup
|
|
971
976
|
protobuf::libprotobuf
|
|
972
977
|
ssl
|
|
973
978
|
zlibstatic
|
package/package.json
CHANGED