File tree
19 files changed
+681
-27
lines changed- .github/workflows
- aws-common-runtime
- bin/elasticurl_cpp
- include/aws/crt
- http
- io
- source
- http
- io
- tests
19 files changed
+681
-27
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
99 | 99 |
| |
100 | 100 |
| |
101 | 101 |
| |
102 |
| - | |
| 102 | + | |
103 | 103 |
| |
104 | 104 |
| |
105 | 105 |
|
Lines changed: 7 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
3 | 3 |
| |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
4 | 11 |
|
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
257 | 257 |
| |
258 | 258 |
| |
259 | 259 |
| |
| 260 | + | |
260 | 261 |
| |
261 | 262 |
| |
262 | 263 |
|
Submodule aws-c-common updated 30 files
- .builder/actions/clang-tidy.py+1-1
- AWSCRTAndroidTestRunner/.gitignore+14
- AWSCRTAndroidTestRunner/app/.gitignore+3
- AWSCRTAndroidTestRunner/app/build.gradle+48
- AWSCRTAndroidTestRunner/app/src/androidTest/java/software/amazon/awssdk/crt/awscrtandroidtestrunner/NativeTest.kt.in+13
- AWSCRTAndroidTestRunner/app/src/androidTest/java/software/amazon/awssdk/crt/awscrtandroidtestrunner/NativeTestFixture.kt+12
- AWSCRTAndroidTestRunner/app/src/main/AndroidManifest.xml+5
- AWSCRTAndroidTestRunner/app/src/main/cpp/CMakeLists.txt+58
- AWSCRTAndroidTestRunner/app/src/main/cpp/native-lib.cpp+31
- AWSCRTAndroidTestRunner/build.gradle+29
- AWSCRTAndroidTestRunner/gradle.properties+23
- AWSCRTAndroidTestRunner/gradle/wrapper/gradle-wrapper.jar
- AWSCRTAndroidTestRunner/gradle/wrapper/gradle-wrapper.properties+6
- AWSCRTAndroidTestRunner/gradlew+172
- AWSCRTAndroidTestRunner/gradlew.bat+84
- AWSCRTAndroidTestRunner/settings.gradle+2
- CMakeLists.txt+4
- cmake/AwsTestHarness.cmake+8
- include/aws/common/command_line_parser.h+1-1
- include/aws/common/hash_table.h+3
- include/aws/common/resource_name.h+49
- source/android/logging.c+168
- source/command_line_parser.c+8-9
- source/hash_table.c+8
- source/logging.c+7
- source/resource_name.c+121
- tests/CMakeLists.txt+47-38
- tests/command_line_parser_test.c+9
- tests/hash_table_test.c+31
- tests/resource_name_test.c+209
Submodule aws-c-http updated 33 files
- bin/elasticurl/main.c+29-4
- include/aws/http/http.h+2-3
- include/aws/http/private/connection_impl.h-1
- include/aws/http/private/h2_connection.h+103-6
- include/aws/http/private/h2_decoder.h+29-20
- include/aws/http/private/h2_frames.h+58-8
- include/aws/http/private/h2_stream.h+55-7
- include/aws/http/private/hpack.h+15
- include/aws/http/private/http_impl.h+2
- include/aws/http/request_response.h+2-1
- integration-testing/http_client_test.py+27-10
- source/connection.c-1
- source/h1_connection.c+6-3
- source/h2_connection.c+1.2k-192
- source/h2_decoder.c+249-109
- source/h2_frames.c+105-18
- source/h2_stream.c+587-5
- source/hpack.c+159-61
- source/http.c+9-7
- source/request_response.c+1-1
- tests/CMakeLists.txt+61-11
- tests/fuzz/fuzz_h2_decoder_correct.c+18-8
- tests/h2_test_helper.c+340-93
- tests/h2_test_helper.h+115-4
- tests/stream_test_helper.c+198
- tests/stream_test_helper.h+70
- tests/test_h1_client.c+174-332
- tests/test_h2_client.c+2.0k-9
- tests/test_h2_decoder.c+308-204
- tests/test_h2_encoder.c+107-2
- tests/test_h2_headers.c+400-31
- tests/test_hpack.c+197-12
- tests/test_tls.c+30-8
- .github/workflows/proof-alarm.yml+36
- CMakeLists.txt+1-1
- docs/epoll_event_loop_proof.md+134
- include/aws/io/channel.h+2-2
- include/aws/io/host_resolver.h+23-3
- include/aws/io/io.h+2
- include/aws/io/logging.h+1
- include/aws/io/retry_strategy.h+178
- source/exponential_backoff_retry_strategy.c+356
- source/host_resolver.c+43-1
- source/io.c+13-1
- source/posix/host_resolver.c+5
- source/retry_strategy.c+67
- source/s2n/s2n_tls_channel_handler.c+4
- tests/CMakeLists.txt+8-2
- tests/exponential_backoff_retry_test.c+263
- tests/statistics_handler_test.h+1-1
Lines changed: 42 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + |
0 commit comments