@fails-components/webtransport 0.0.6 → 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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fails-components/webtransport",
3
- "version": "0.0.6",
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",