Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion crt/aws-c-common
Submodule aws-c-common updated 44 files
+52 −0 .changes/README.md
+12 −0 .github/workflows/block-needs-review.yml
+43 −0 .github/workflows/check-abi.yml
+1 −1 .github/workflows/ci.yml
+1 −1 .github/workflows/codecov.yml
+40 −0 .github/workflows/release.yml
+5 −0 CHANGELOG.md
+21 −8 CMakeLists.txt
+5 −0 CODEOWNERS
+7 −0 CONTRIBUTING.md
+6 −0 README.md
+1 −0 VERSION
+31 −0 VERSIONING.md
+2 −2 cmake/AwsCFlags.cmake
+13 −0 cmake/AwsGetVersion.cmake
+1 −1 include/aws/common/array_list.h
+3 −3 include/aws/common/atomics_msvc.inl
+1 −1 include/aws/common/byte_buf.h
+1 −1 include/aws/common/cache.h
+3 −3 include/aws/common/cbor.h
+1 −1 include/aws/common/hash_table.h
+3 −3 include/aws/common/json.h
+9 −0 include/aws/common/macros.h
+1 −1 include/aws/common/math.cbmc.inl
+1 −1 include/aws/common/priority_queue.h
+2 −2 include/aws/common/private/byte_buf.h
+1 −1 include/aws/common/private/lookup3.inl
+7 −7 include/aws/common/string.h
+7 −7 scripts/appverifier_xml.py
+1 −1 source/allocator_sba.c
+1 −1 source/common.c
+1 −1 source/hash_table.c
+1 −1 source/json.c
+1 −1 source/memtrace.c
+1 −1 source/posix/thread.c
+1 −1 source/windows/file.c
+1 −1 source/windows/system_info.c
+1 −1 source/xml_parser.c
+4 −4 tests/encoding_test.c
+3 −3 tests/error_test.c
+1 −1 verification/cbmc/proofs/aws_priority_queue_s_sift_either/aws_priority_queue_s_sift_either_harness.c
+1 −1 verification/cbmc/proofs/aws_priority_queue_s_sift_up/aws_priority_queue_s_sift_up_harness.c
+1 −1 verification/cbmc/stubs/aws_array_list_swap_override.c
+1 −1 verification/cbmc/stubs/aws_hash_table_no_slots_override.c
2 changes: 1 addition & 1 deletion crt/aws-c-http
Submodule aws-c-http updated 44 files
+52 −0 .changes/README.md
+12 −0 .github/workflows/block-needs-review.yml
+43 −0 .github/workflows/check-abi.yml
+34 −1 .github/workflows/ci.yml
+6 −3 .github/workflows/issue-regression-labeler.yml
+44 −0 .github/workflows/release.yml
+5 −0 CHANGELOG.md
+18 −3 CMakeLists.txt
+5 −0 CODEOWNERS
+7 −0 CONTRIBUTING.md
+6 −0 README.md
+1 −0 VERSION
+31 −0 VERSIONING.md
+1 −1 bin/elasticurl/main.c
+5 −5 include/aws/http/http2_stream_manager.h
+1 −1 include/aws/http/private/h1_connection.h
+1 −0 include/aws/http/private/h2_decoder.h
+8 −0 include/aws/http/private/hpack.h
+3 −3 include/aws/http/private/http2_stream_manager_impl.h
+4 −4 include/aws/http/proxy.h
+1 −1 include/aws/http/request_response.h
+1 −1 include/aws/http/websocket.h
+3 −3 source/connection.c
+3 −3 source/connection_manager.c
+15 −1 source/h1_connection.c
+7 −4 source/h2_connection.c
+28 −1 source/h2_decoder.c
+8 −1 source/h2_frames.c
+1 −1 source/hpack.c
+15 −5 source/hpack_decoder.c
+3 −3 source/proxy_connection.c
+8 −1 tests/CMakeLists.txt
+22 −0 tests/fuzz/fuzz_h2_decoder_correct.c
+2 −0 tests/stream_test_helper.c
+5 −0 tests/stream_test_helper.h
+37 −21 tests/test_connection.c
+2 −2 tests/test_connection_manager.c
+2 −2 tests/test_h1_client.c
+1 −1 tests/test_h1_server.c
+375 −10 tests/test_h2_client.c
+56 −0 tests/test_h2_decoder.c
+3 −3 tests/test_localhost_integ.c
+1 −1 tests/test_stream_manager.c
+1 −1 tests/test_websocket_encoder.c
2 changes: 1 addition & 1 deletion crt/aws-c-io
Submodule aws-c-io updated 52 files
+52 −0 .changes/README.md
+12 −0 .github/workflows/block-needs-review.yml
+43 −0 .github/workflows/check-abi.yml
+44 −0 .github/workflows/release.yml
+5 −0 CHANGELOG.md
+18 −3 CMakeLists.txt
+5 −0 CODEOWNERS
+7 −0 CONTRIBUTING.md
+1 −1 PKCS11.md
+11 −5 README.md
+1 −0 VERSION
+31 −0 VERSIONING.md
+2 −2 include/aws/io/channel.h
+2 −2 include/aws/io/host_resolver.h
+2 −2 include/aws/io/pkcs11.h
+1 −1 include/aws/io/private/event_loop_impl.h
+1 −1 include/aws/io/private/pki_utils.h
+2 −2 include/aws/io/socket.h
+1 −1 include/aws/io/stream.h
+10 −10 include/aws/io/tls_channel_handler.h
+2 −2 include/aws/testing/io_testing_channel.h
+1 −2 source/bsd/kqueue_event_loop.c
+2 −2 source/channel_bootstrap.c
+5 −4 source/darwin/darwin_pki_utils.c
+5 −5 source/darwin/dispatch_queue_event_loop.c
+6 −6 source/darwin/nw_socket.c
+1 −1 source/darwin/secure_transport_tls_channel_handler.c
+2 −2 source/event_loop.c
+4 −4 source/exponential_backoff_retry_strategy.c
+1 −2 source/future.c
+6 −6 source/host_resolver.c
+2 −2 source/no_retry_strategy.c
+1 −1 source/pem.c
+7 −7 source/pkcs11_lib.c
+0 −1 source/pkcs11_private.h
+1 −1 source/pkcs11_tls_op_handler.c
+3 −3 source/posix/socket.c
+2 −2 source/s2n/s2n_tls_channel_handler.c
+1 −2 source/socket.c
+1 −1 source/standard_retry_strategy.c
+1 −1 source/tls_channel_handler.c
+1 −1 source/windows/iocp/iocp_event_loop.c
+2 −2 source/windows/iocp/socket.c
+12 −9 source/windows/secure_channel_tls_handler.c
+2 −2 source/windows/shared_library.c
+1 −1 source/windows/windows_pki_utils.c
+4 −4 tests/CMakeLists.txt
+3 −3 tests/event_loop_test.c
+1 −1 tests/pipe_test.c
+1 −1 tests/pkcs11_test.c
+4 −4 tests/tls_handler_test.c
+1 −1 tests/vcc/preamble.h
2 changes: 1 addition & 1 deletion crt/aws-lc
2 changes: 1 addition & 1 deletion crt/s2n
Submodule s2n updated from 853d19 to 3b975b
Loading