@fails-components/webtransport 0.0.5 → 0.0.7
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 -8
- package/package.json +2 -1
- package/platform/quiche_platform_impl/quic_udp_socket_winsock.cc +605 -523
- package/src/http3client.cc +115 -80
- package/src/http3client.h +26 -20
- package/src/http3dispatcher.cc +5 -3
- package/src/http3dispatcher.h +2 -1
- package/src/http3server.cc +47 -10
- package/src/http3server.h +2 -1
- package/src/http3serverbackend.h +1 -1
- package/src/http3wtsessionvisitor.cc +1 -1
- package/src/http3wtsessionvisitor.h +1 -1
- package/src/webtransport.js +1 -0
- package/test/testsuite.js +8 -8
- package/platform/quiche_platform_impl/quic_flags_impl.h +0 -9
package/CMakeLists.txt
CHANGED
|
@@ -240,8 +240,6 @@ third_party/quiche/quiche/common/platform/api/quiche_reference_counted.h
|
|
|
240
240
|
third_party/quiche/quiche/common/platform/api/quiche_thread_local.h
|
|
241
241
|
third_party/quiche/quiche/common/platform/api/quiche_time_utils.h
|
|
242
242
|
third_party/quiche/quiche/common/platform/api/quiche_url_utils.h
|
|
243
|
-
third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quic_flags_impl.cc
|
|
244
|
-
third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quic_flags_impl.h
|
|
245
243
|
third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_flag_utils_impl.h
|
|
246
244
|
third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_flags_impl.h
|
|
247
245
|
third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_flags_impl.cc
|
|
@@ -254,15 +252,23 @@ third_party/quiche/quiche/common/platform/default/quiche_platform_impl/quiche_io
|
|
|
254
252
|
third_party/quiche/quiche/common/print_elements.h
|
|
255
253
|
third_party/quiche/quiche/common/quiche_buffer_allocator.cc
|
|
256
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
|
|
257
257
|
third_party/quiche/quiche/common/quiche_circular_deque.h
|
|
258
258
|
third_party/quiche/quiche/common/quiche_data_reader.cc
|
|
259
259
|
third_party/quiche/quiche/common/quiche_data_reader.h
|
|
260
260
|
third_party/quiche/quiche/common/quiche_data_writer.cc
|
|
261
261
|
third_party/quiche/quiche/common/quiche_data_writer.h
|
|
262
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
|
|
263
267
|
third_party/quiche/quiche/common/quiche_linked_hash_map.h
|
|
264
268
|
third_party/quiche/quiche/common/quiche_mem_slice_storage.h
|
|
265
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
|
|
266
272
|
third_party/quiche/quiche/common/quiche_text_utils.cc
|
|
267
273
|
third_party/quiche/quiche/common/quiche_text_utils.h
|
|
268
274
|
third_party/quiche/quiche/common/simple_buffer_allocator.cc
|
|
@@ -506,8 +512,6 @@ third_party/quiche/quiche/quic/core/crypto/quic_encrypter.cc
|
|
|
506
512
|
third_party/quiche/quiche/quic/core/crypto/quic_encrypter.h
|
|
507
513
|
third_party/quiche/quiche/quic/core/crypto/quic_hkdf.cc
|
|
508
514
|
third_party/quiche/quiche/quic/core/crypto/quic_hkdf.h
|
|
509
|
-
third_party/quiche/quiche/quic/core/crypto/quic_random.cc
|
|
510
|
-
third_party/quiche/quiche/quic/core/crypto/quic_random.h
|
|
511
515
|
third_party/quiche/quiche/quic/core/crypto/tls_client_connection.cc
|
|
512
516
|
third_party/quiche/quiche/quic/core/crypto/tls_client_connection.h
|
|
513
517
|
third_party/quiche/quiche/quic/core/crypto/tls_connection.cc
|
|
@@ -720,6 +724,8 @@ third_party/quiche/quiche/quic/core/quic_default_packet_writer.h
|
|
|
720
724
|
third_party/quiche/quiche/quic/core/quic_default_clock.cc
|
|
721
725
|
third_party/quiche/quiche/quic/core/quic_default_clock.h
|
|
722
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
|
|
723
729
|
third_party/quiche/quiche/quic/core/quic_dispatcher.cc
|
|
724
730
|
third_party/quiche/quiche/quic/core/quic_dispatcher.h
|
|
725
731
|
third_party/quiche/quiche/quic/core/quic_error_codes.cc
|
|
@@ -821,10 +827,6 @@ third_party/quiche/quiche/quic/platform/api/quic_export.h
|
|
|
821
827
|
third_party/quiche/quiche/quic/platform/api/quic_exported_stats.h
|
|
822
828
|
third_party/quiche/quiche/quic/platform/api/quic_flag_utils.h
|
|
823
829
|
third_party/quiche/quiche/quic/platform/api/quic_flags.h
|
|
824
|
-
third_party/quiche/quiche/quic/platform/api/quic_ip_address.cc
|
|
825
|
-
third_party/quiche/quiche/quic/platform/api/quic_ip_address.h
|
|
826
|
-
third_party/quiche/quiche/quic/platform/api/quic_ip_address_family.cc
|
|
827
|
-
third_party/quiche/quiche/quic/platform/api/quic_ip_address_family.h
|
|
828
830
|
third_party/quiche/quiche/quic/platform/api/quic_logging.h
|
|
829
831
|
#third_party/quiche/quiche/quic/platform/api/quic_mem_slice.h
|
|
830
832
|
#third_party/quiche/quiche/quic/platform/api/quic_mem_slice_storage.cc
|
|
@@ -970,6 +972,7 @@ absl::synchronization
|
|
|
970
972
|
absl::time
|
|
971
973
|
absl::status
|
|
972
974
|
absl::statusor
|
|
975
|
+
absl::cleanup
|
|
973
976
|
protobuf::libprotobuf
|
|
974
977
|
ssl
|
|
975
978
|
zlibstatic
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fails-components/webtransport",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "A component to add webtransport support (server and client) to node.js using libquiche",
|
|
5
5
|
"main": "src/webtransport.js",
|
|
6
6
|
"module": "src/webtransport.js",
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"start": "node test/echoserver.js",
|
|
13
13
|
"test": "node test/test.js",
|
|
14
14
|
"install": "node build.js install",
|
|
15
|
+
"build": "node build.js build",
|
|
15
16
|
"rebuild": "node build.js rebuild",
|
|
16
17
|
"rebuild-debug": "node build.js rebuild-debug -D",
|
|
17
18
|
"build-debug": "node build.js build-debug"
|