-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Enabled s2n on android * Added android-armv7 CI * Updated to builder v0.6.1 * updated http to v0.5.2 * Updated s2n to 57147b6c99183c8b1e27068b53ce079eebc106cd
- Loading branch information
Justin Boswell
authored
Apr 3, 2020
1 parent
e84c340
commit 1549aaf
Showing
5 changed files
with
15 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule aws-c-http
updated
20 files
+3 −1 | CMakeLists.txt | |
+9 −0 | include/aws/http/http.h | |
+5 −0 | include/aws/http/private/h2_connection.h | |
+22 −12 | include/aws/http/private/h2_decoder.h | |
+14 −0 | include/aws/http/private/h2_frames.h | |
+27 −0 | include/aws/http/private/http_impl.h | |
+16 −0 | include/aws/http/private/strutil.h | |
+2 −2 | source/h1_decoder.c | |
+77 −3 | source/h2_connection.c | |
+360 −34 | source/h2_decoder.c | |
+13 −3 | source/h2_frames.c | |
+33 −4 | source/http.c | |
+61 −0 | source/strutil.c | |
+20 −0 | tests/CMakeLists.txt | |
+116 −32 | tests/fuzz/fuzz_h2_decoder_correct.c | |
+38 −33 | tests/h2_test_helper.c | |
+1 −0 | tests/h2_test_helper.h | |
+20 −2 | tests/test_h2_client.c | |
+596 −70 | tests/test_h2_decoder.c | |
+59 −1 | tests/test_strutil.c |
Submodule s2n
updated
from bffd9b to 57147b
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters