3 files changed
+3
-3
lines changedSubmodule aws-c-auth updated 60 files
- NOTICE+2-1
- README.md+2-2
- include/aws/auth/auth.h+11-13
- include/aws/auth/aws_imds_client.h+265-39
- include/aws/auth/credentials.h+311-48
- include/aws/auth/exports.h+3-13
- include/aws/auth/private/aws_profile.h+3-13
- include/aws/auth/private/aws_signing.h+3-13
- include/aws/auth/private/credentials_utils.h+3-13
- include/aws/auth/private/sigv4_http_request.h+3-13
- include/aws/auth/private/xml_parser.h+3-13
- include/aws/auth/signable.h+36-3
- include/aws/auth/signing.h+19-27
- include/aws/auth/signing_config.h+17-13
- include/aws/auth/signing_result.h+45-17
- source/auth.c+3-13
- source/aws_imds_client.c+3-12
- source/aws_profile.c+3-13
- source/aws_signing.c+3-13
- source/credentials.c+3-13
- source/credentials_provider_cached.c+3-13
- source/credentials_provider_chain.c+3-13
- source/credentials_provider_ecs.c+12-19
- source/credentials_provider_environment.c+3-13
- source/credentials_provider_imds.c+3-13
- source/credentials_provider_process.c+3-13
- source/credentials_provider_profile.c+3-13
- source/credentials_provider_static.c+3-13
- source/credentials_provider_sts.c+5-13
- source/credentials_provider_sts_web_identity.c+3-12
- source/credentials_provider_x509.c+4-13
- source/credentials_utils.c+3-13
- source/signable.c+5-15
- source/signing.c+3-13
- source/signing_config.c+3-13
- source/signing_result.c+5-15
- source/sigv4_http_request.c+5-15
- source/xml_parser.c+3-13
- tests/CMakeLists.txt+1
- tests/aws-sig-v4-test-suite/NOTICE+2-1
- tests/aws_imds_client_test.c+2-12
- tests/aws_profile_fatal_parse_tests.c+3-13
- tests/aws_profile_tests.c+3-13
- tests/credentials_provider_ecs_tests.c+62-35
- tests/credentials_provider_imds_tests.c+3-13
- tests/credentials_provider_process_tests.c+3-13
- tests/credentials_provider_sts_tests.c+3-13
- tests/credentials_provider_sts_web_identity_tests.c+3-13
- tests/credentials_provider_utils.c+3-13
- tests/credentials_provider_utils.h+3-13
- tests/credentials_provider_x509_tests.c+3-13
- tests/credentials_tests.c+3-13
- tests/fuzz/parse_config_profile.c+3-13
- tests/fuzz/parse_credentials_profile.c+3-13
- tests/shared_credentials_test_definitions.h+3-13
- tests/sigv4_tests.c+3-13
- tests/test_chunked_signing.c+3-13
- tests/test_signable.c+3-13
- tests/test_signable.h+3-13
- tests/xml_parser_test.c+3-13
Submodule aws-c-http updated 87 files
- .travis/travis_build.sh+2-13
- NOTICE+2-1
- README.md+57
- bin/elasticurl/main.c+3-13
- include/aws/http/connection.h+93-13
- include/aws/http/connection_manager.h+3-13
- include/aws/http/exports.h+3-13
- include/aws/http/http.h+4-13
- include/aws/http/private/connection_impl.h+26-16
- include/aws/http/private/connection_manager_system_vtable.h+5-15
- include/aws/http/private/connection_monitor.h+3-13
- include/aws/http/private/h1_connection.h+87-13
- include/aws/http/private/h1_decoder.h+3-13
- include/aws/http/private/h1_encoder.h+3-13
- include/aws/http/private/h1_stream.h+3-13
- include/aws/http/private/h2_connection.h+41-19
- include/aws/http/private/h2_decoder.h+3-13
- include/aws/http/private/h2_frames.h+3-13
- include/aws/http/private/h2_stream.h+26-16
- include/aws/http/private/hpack.h+3-13
- include/aws/http/private/hpack_header_static_table.def+3-13
- include/aws/http/private/hpack_huffman_static_table.def+4-14
- include/aws/http/private/http_impl.h+3-13
- include/aws/http/private/proxy_impl.h+3-13
- include/aws/http/private/request_response_impl.h+9-14
- include/aws/http/private/strutil.h+3-13
- include/aws/http/private/websocket_decoder.h+3-13
- include/aws/http/private/websocket_encoder.h+3-13
- include/aws/http/private/websocket_impl.h+3-13
- include/aws/http/request_response.h+39-15
- include/aws/http/server.h+3-13
- include/aws/http/statistics.h+3-13
- include/aws/http/status_code.h+3-13
- include/aws/http/websocket.h+3-13
- integration-testing/http_client_test.py+2-12
- source/connection.c+93-26
- source/connection_manager.c+6-16
- source/connection_monitor.c+3-13
- source/h1_connection.c+119-166
- source/h1_decoder.c+3-13
- source/h1_encoder.c+3-13
- source/h1_stream.c+6-13
- source/h2_connection.c+432-62
- source/h2_decoder.c+3-13
- source/h2_frames.c+3-13
- source/h2_stream.c+178-49
- source/hpack.c+3-13
- source/hpack_huffman_static.c+3-13
- source/http.c+7-14
- source/proxy_connection.c+3-13
- source/request_response.c+56-18
- source/statistics.c+3-13
- source/strutil.c+3-13
- source/websocket.c+3-13
- source/websocket_bootstrap.c+7-13
- source/websocket_decoder.c+3-13
- source/websocket_encoder.c+3-13
- tests/CMakeLists.txt+16-1
- tests/fuzz/fuzz_h2_decoder_correct.c+3-13
- tests/fuzz/fuzz_h2_decoder_random.c+3-13
- tests/h2_test_helper.c+3-13
- tests/h2_test_helper.h+3-13
- tests/integration_test_proxy.c+3-13
- tests/proxy_test_helper.c+3-13
- tests/proxy_test_helper.h+3-13
- tests/stream_test_helper.c+3-13
- tests/stream_test_helper.h+3-13
- tests/test_connection.c+3-13
- tests/test_connection_manager.c+7-16
- tests/test_connection_monitor.c+3-13
- tests/test_h1_client.c+42-13
- tests/test_h1_decoder.c+3-13
- tests/test_h1_encoder.c+3-13
- tests/test_h1_server.c+3-13
- tests/test_h2_client.c+666-43
- tests/test_h2_decoder.c+3-13
- tests/test_h2_encoder.c+3-13
- tests/test_h2_headers.c+3-13
- tests/test_hpack.c+3-13
- tests/test_message.c+3-13
- tests/test_proxy.c+3-13
- tests/test_strutil.c+3-13
- tests/test_tls.c+3-13
- tests/test_websocket_bootstrap.c+3-13
- tests/test_websocket_decoder.c+3-13
- tests/test_websocket_encoder.c+3-13
- tests/test_websocket_handler.c+3-13
- .github/workflows/proof-alarm.yml+1-1
- NOTICE+2-1
- README.md+52-1
- builder.json+1-1
- docs/epoll_event_loop_proof.md+4-1
- include/aws/io/channel.h+3-13
- include/aws/io/channel_bootstrap.h+3-13
- include/aws/io/event_loop.h+3-13
- include/aws/io/exports.h+3-13
- include/aws/io/file_utils.h+3-13
- include/aws/io/host_resolver.h+3-13
- include/aws/io/io.h+3-13
- include/aws/io/logging.h+3-13
- include/aws/io/message_pool.h+3-13
- include/aws/io/pipe.h+3-13
- include/aws/io/pki_utils.h+3-13
- include/aws/io/private/tls_channel_handler_shared.h+3-13
- include/aws/io/retry_strategy.h+3-13
- include/aws/io/shared_library.h+3-13
- include/aws/io/socket.h+3-13
- include/aws/io/socket_channel_handler.h+3-13
- include/aws/io/statistics.h+3-13
- include/aws/io/stream.h+3-13
- include/aws/io/tls_channel_handler.h+3-13
- include/aws/io/uri.h+3-13
- include/aws/testing/io_testing_channel.h+8-13
- source/alpn_handler.c+3-13
- source/bsd/kqueue_event_loop.c+3-13
- source/channel.c+3-13
- source/channel_bootstrap.c+3-13
- source/darwin/darwin_pki_utils.c+3-13
- source/darwin/secure_transport_tls_channel_handler.c+17-15
- source/event_loop.c+3-13
- source/exponential_backoff_retry_strategy.c+3-13
- source/file_utils_shared.c+3-13
- source/host_resolver.c+3-13
- source/io.c+3-13
- source/linux/epoll_event_loop.c+3-13
- source/message_pool.c+3-13
- source/pki_utils.c+3-13
- source/posix/file_utils.c+3-13
- source/posix/host_resolver.c+3-13
- source/posix/pipe.c+3-13
- source/posix/shared_library.c+3-13
- source/posix/socket.c+3-13
- source/retry_strategy.c+3-13
- source/s2n/s2n_tls_channel_handler.c+18-15
- source/socket_channel_handler.c+3-13
- source/statistics.c+3-13
- source/stream.c+3-13
- source/tls_channel_handler.c+3-13
- source/tls_channel_handler_shared.c+3-13
- source/uri.c+3-13
- source/windows/file_utils.c+3-13
- source/windows/host_resolver.c+3-13
- source/windows/iocp/iocp_event_loop.c+3-13
- source/windows/iocp/pipe.c+3-13
- source/windows/iocp/socket.c+3-13
- source/windows/secure_channel_tls_handler.c+57-27
- source/windows/shared_library.c+3-13
- source/windows/windows_pki_utils.c+3-13
- source/windows/winsock_init.c+3-13
- tests/alpn_handler_test.c+3-13
- tests/channel_test.c+3-13
- tests/default_host_resolver_test.c+3-13
- tests/error_test.c+3-13
- tests/event_loop_test.c+3-13
- tests/exponential_backoff_retry_test.c+3-13
- tests/file_utils_test.c+3-13
- tests/io_testing_channel_test.c+3-13
- tests/mock_dns_resolver.c+3-13
- tests/mock_dns_resolver.h+3-13
- tests/pipe_test.c+3-13
- tests/pki_utils_test.c+3-13
- tests/read_write_test_handler.c+3-13
- tests/read_write_test_handler.h+3-13
- tests/shared_library_test.c+3-13
- tests/socket_handler_test.c+3-13
- tests/socket_test.c+3-13
- tests/statistics_handler_test.c+3-13
- tests/statistics_handler_test.h+3-13
- tests/stream_test.c+3-13
- tests/tls_handler_test.c+3-13
- tests/uri_test.c+3-13
- tests/vcc/Makefile+30
- tests/vcc/README.md+65
- tests/vcc/cancel_task.c+24
- tests/vcc/client.c+93
- tests/vcc/docker-images/win10-vs2012/Dockerfile+32
- tests/vcc/is_on_callers_thread.c+33
- tests/vcc/lifecycle.c+109
- tests/vcc/main_loop.c+176
- tests/vcc/new_destroy.c+290
- tests/vcc/preamble.h+818
- tests/vcc/process_task_pre_queue.c+89
- tests/vcc/schedule.c+113
- tests/vcc/subscribe.c+83
- tests/vcc/unsubscribe.c+74
0 commit comments