Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update all crates to respective main HEAD
  • Loading branch information
algesten committed Oct 9, 2021
commit 5a098c0449237dfd8687d17d56ea880dd8f66f2a
2 changes: 1 addition & 1 deletion crates/dtls
Submodule dtls updated 71 files
+1 −1 .github/workflows/cargo.yml
+3 −4 Cargo.toml
+3 −3 examples/dial/psk/dial_psk.rs
+2 −2 examples/dial/selfsign/dial_selfsign.rs
+4 −5 examples/dial/verify/dial_verify.rs
+4 −3 examples/hub/Cargo.toml
+4 −3 examples/hub/src/lib.rs
+20 −16 examples/hub/src/utilities.rs
+4 −4 examples/listen/psk/listen_psk.rs
+3 −3 examples/listen/selfsign/listen_selfsign.rs
+5 −6 examples/listen/verify/listen_verify.rs
+1 −1 src/alert/alert_test.rs
+1 −1 src/alert/mod.rs
+1 −2 src/application_data.rs
+1 −2 src/change_cipher_spec/mod.rs
+6 −10 src/cipher_suite/cipher_suite_aes_128_ccm.rs
+6 −10 src/cipher_suite/cipher_suite_aes_128_gcm_sha256.rs
+6 −10 src/cipher_suite/cipher_suite_aes_256_cbc_sha.rs
+6 −10 src/cipher_suite/cipher_suite_tls_psk_with_aes_128_gcm_sha256.rs
+2 −3 src/cipher_suite/mod.rs
+2 −1 src/compression_methods.rs
+5 −6 src/config.rs
+16 −21 src/conn/conn_test.rs
+36 −33 src/conn/mod.rs
+1 −2 src/content.rs
+1 −1 src/crypto/crypto_cbc.rs
+5 −5 src/crypto/crypto_ccm.rs
+3 −3 src/crypto/crypto_gcm.rs
+3 −3 src/crypto/crypto_test.rs
+27 −27 src/crypto/mod.rs
+2 −3 src/curve/named_curve.rs
+73 −4 src/error.rs
+1 −2 src/extension/extension_server_name.rs
+0 −2 src/extension/extension_supported_elliptic_curves.rs
+0 −2 src/extension/extension_supported_point_formats.rs
+0 −2 src/extension/extension_supported_signature_algorithms.rs
+0 −2 src/extension/extension_use_extended_master_secret.rs
+0 −2 src/extension/extension_use_srtp.rs
+1 −2 src/extension/mod.rs
+1 −1 src/extension/renegotiation_info.rs
+8 −8 src/flight/flight0.rs
+4 −4 src/flight/flight1.rs
+5 −5 src/flight/flight2.rs
+11 −11 src/flight/flight3.rs
+11 −11 src/flight/flight4.rs
+9 −9 src/flight/flight5.rs
+2 −2 src/flight/flight6.rs
+3 −2 src/flight/mod.rs
+4 −5 src/fragment_buffer/mod.rs
+3 −4 src/handshake/handshake_cache.rs
+0 −1 src/handshake/handshake_header.rs
+0 −1 src/handshake/handshake_message_certificate.rs
+0 −1 src/handshake/handshake_message_certificate_request.rs
+0 −1 src/handshake/handshake_message_certificate_verify.rs
+1 −2 src/handshake/handshake_message_client_hello.rs
+2 −3 src/handshake/handshake_message_client_key_exchange.rs
+0 −1 src/handshake/handshake_message_finished.rs
+2 −3 src/handshake/handshake_message_hello_verify_request.rs
+0 −1 src/handshake/handshake_message_server_hello.rs
+0 −1 src/handshake/handshake_message_server_hello_done.rs
+7 −8 src/handshake/handshake_message_server_key_exchange.rs
+4 −5 src/handshake/handshake_random.rs
+1 −2 src/handshake/mod.rs
+4 −5 src/handshaker.rs
+3 −1 src/lib.rs
+9 −5 src/listener.rs
+9 −7 src/prf/mod.rs
+3 −4 src/record_layer/mod.rs
+2 −3 src/record_layer/record_layer_header.rs
+4 −5 src/signature_hash_algorithm/mod.rs
+16 −18 src/state.rs
2 changes: 1 addition & 1 deletion crates/rtcp
Submodule rtcp updated 32 files
+1 −1 .github/workflows/cargo.yml
+3 −4 Cargo.toml
+14 −33 src/compound_packet/compound_packet_test.rs
+2 −1 src/compound_packet/mod.rs
+19 −5 src/error.rs
+8 −12 src/goodbye/goodbye_test.rs
+2 −1 src/goodbye/mod.rs
+10 −14 src/header.rs
+3 −1 src/lib.rs
+8 −14 src/packet.rs
+7 −11 src/payload_feedbacks/full_intra_request/full_intra_request_test.rs
+2 −1 src/payload_feedbacks/full_intra_request/mod.rs
+2 −1 src/payload_feedbacks/picture_loss_indication/mod.rs
+7 −11 src/payload_feedbacks/picture_loss_indication/picture_loss_indication_test.rs
+2 −1 src/payload_feedbacks/receiver_estimated_maximum_bitrate/mod.rs
+4 −6 src/payload_feedbacks/receiver_estimated_maximum_bitrate/receiver_estimated_maximum_bitrate_test.rs
+2 −1 src/payload_feedbacks/slice_loss_indication/mod.rs
+7 −11 src/payload_feedbacks/slice_loss_indication/slice_loss_indication_test.rs
+3 −4 src/raw_packet.rs
+2 −1 src/receiver_report/mod.rs
+8 −12 src/receiver_report/receiver_report_test.rs
+2 −3 src/reception_report.rs
+2 −1 src/sender_report/mod.rs
+7 −11 src/sender_report/sender_report_test.rs
+2 −1 src/source_description/mod.rs
+7 −11 src/source_description/source_description_test.rs
+2 −1 src/transport_feedbacks/rapid_resynchronization_request/mod.rs
+7 −11 src/transport_feedbacks/rapid_resynchronization_request/rapid_resynchronization_request_test.rs
+2 −1 src/transport_feedbacks/transport_layer_cc/mod.rs
+2 −3 src/transport_feedbacks/transport_layer_nack/mod.rs
+7 −11 src/transport_feedbacks/transport_layer_nack/transport_layer_nack_test.rs
+3 −4 src/util.rs
2 changes: 1 addition & 1 deletion crates/sctp
Submodule sctp updated 44 files
+1 −1 .github/workflows/cargo.yml
+3 −4 Cargo.toml
+3 −3 examples/ping.rs
+3 −3 examples/pong.rs
+16 −17 src/association/association_internal.rs
+20 −8 src/association/association_internal/association_internal_test.rs
+19 −16 src/association/association_test.rs
+6 −7 src/association/mod.rs
+1 −2 src/chunk/chunk_abort.rs
+1 −2 src/chunk/chunk_cookie_ack.rs
+1 −2 src/chunk/chunk_cookie_echo.rs
+1 −2 src/chunk/chunk_error.rs
+3 −4 src/chunk/chunk_forward_tsn.rs
+4 −5 src/chunk/chunk_header.rs
+3 −4 src/chunk/chunk_heartbeat.rs
+5 −6 src/chunk/chunk_heartbeat_ack.rs
+7 −8 src/chunk/chunk_init.rs
+2 −3 src/chunk/chunk_payload_data.rs
+2 −3 src/chunk/chunk_reconfig.rs
+3 −4 src/chunk/chunk_selective_ack.rs
+2 −3 src/chunk/chunk_shutdown.rs
+1 −2 src/chunk/chunk_shutdown_ack.rs
+1 −2 src/chunk/chunk_shutdown_complete.rs
+1 −2 src/chunk/mod.rs
+4 −8 src/error.rs
+3 −4 src/error_cause.rs
+3 −1 src/lib.rs
+9 −10 src/packet.rs
+3 −4 src/param/mod.rs
+1 −2 src/param/param_chunk_list.rs
+0 −1 src/param/param_forward_tsn_supported.rs
+2 −3 src/param/param_header.rs
+0 −1 src/param/param_heartbeat_info.rs
+1 −2 src/param/param_outgoing_reset_request.rs
+0 −1 src/param/param_random.rs
+1 −2 src/param/param_reconfig_response.rs
+1 −2 src/param/param_requested_hmac_algorithm.rs
+0 −1 src/param/param_state_cookie.rs
+0 −1 src/param/param_supported_extensions.rs
+3 −6 src/queue/queue_test.rs
+6 −6 src/queue/reassembly_queue.rs
+8 −8 src/stream/mod.rs
+9 −2 src/timer/timer_test.rs
+4 −3 src/util.rs
2 changes: 1 addition & 1 deletion crates/turn
Submodule turn updated 49 files
+4 −5 Cargo.toml
+4 −4 examples/turn_client_udp.rs
+11 −7 examples/turn_server_udp.rs
+2 −3 src/allocation/allocation_manager.rs
+4 −4 src/allocation/allocation_manager/allocation_manager_test.rs
+1 −0 src/allocation/channel_bind/channel_bind_test.rs
+1 −1 src/allocation/five_tuple/five_tuple_test.rs
+3 −4 src/allocation/mod.rs
+5 −3 src/auth/mod.rs
+2 −2 src/client/binding/binding_test.rs
+11 −13 src/client/mod.rs
+1 −2 src/client/periodic_timer/periodic_timer_test.rs
+38 −36 src/client/relay_conn.rs
+4 −3 src/client/relay_conn/relay_conn_test.rs
+2 −2 src/client/transaction.rs
+39 −6 src/error.rs
+3 −1 src/lib.rs
+1 −1 src/proto/addr/addr_test.rs
+3 −5 src/proto/chandata.rs
+4 −6 src/proto/chandata/chandata_test.rs
+2 −3 src/proto/channum.rs
+6 −5 src/proto/channum/channnum_test.rs
+2 −3 src/proto/data.rs
+4 −3 src/proto/data/data_test.rs
+2 −3 src/proto/dontfrag.rs
+2 −2 src/proto/dontfrag/dontfrag_test.rs
+2 −3 src/proto/evenport.rs
+6 −5 src/proto/evenport/evenport_test.rs
+2 −3 src/proto/lifetime.rs
+5 −4 src/proto/lifetime/lifetime_test.rs
+2 −3 src/proto/peeraddr.rs
+1 −1 src/proto/peeraddr/peeraddr_test.rs
+2 −4 src/proto/proto_test.rs
+2 −3 src/proto/relayaddr.rs
+1 −1 src/proto/relayaddr/relayaddr_test.rs
+3 −6 src/proto/reqfamily.rs
+5 −4 src/proto/reqfamily/reqfamily_test.rs
+2 −3 src/proto/reqtrans.rs
+5 −4 src/proto/reqtrans/reqtrans_test.rs
+2 −3 src/proto/rsrvtoken.rs
+4 −3 src/proto/rsrvtoken/rsrvtoken_test.rs
+2 −1 src/relay/mod.rs
+1 −2 src/relay/relay_none.rs
+5 −6 src/relay/relay_range.rs
+1 −2 src/relay/relay_static.rs
+1 −2 src/server/config.rs
+1 −1 src/server/mod.rs
+29 −27 src/server/request.rs
+1 −1 src/server/server_test.rs