-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
To support VSOCK, stop limiting
port
to 16 bits. (#517)
- Loading branch information
Showing
15 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
Submodule aws-c-auth
updated
15 files
Submodule aws-c-common
updated
5 files
+25 −3 | include/aws/common/uri.h | |
+42 −6 | source/posix/cross_process_lock.c | |
+1 −1 | source/posix/system_info.c | |
+30 −28 | source/uri.c | |
+1 −1 | tests/uri_test.c |
Submodule aws-c-event-stream
updated
6 files
Submodule aws-c-http
updated
28 files
+1 −1 | bin/elasticurl/main.c | |
+1 −1 | include/aws/http/connection.h | |
+1 −1 | include/aws/http/connection_manager.h | |
+1 −1 | include/aws/http/http2_stream_manager.h | |
+1 −0 | include/aws/http/private/h1_stream.h | |
+2 −2 | include/aws/http/private/proxy_impl.h | |
+1 −0 | include/aws/http/private/request_response_impl.h | |
+1 −1 | include/aws/http/proxy.h | |
+16 −3 | include/aws/http/request_response.h | |
+1 −1 | include/aws/http/websocket.h | |
+6 −6 | source/connection.c | |
+1 −1 | source/connection_manager.c | |
+28 −0 | source/h1_connection.c | |
+2 −2 | source/h1_encoder.c | |
+1 −0 | source/h1_stream.c | |
+1 −1 | source/h2_connection.c | |
+31 −9 | source/h2_stream.c | |
+1 −1 | source/proxy_connection.c | |
+4 −0 | source/request_response.c | |
+1 −1 | source/websocket_bootstrap.c | |
+2 −0 | tests/CMakeLists.txt | |
+3 −3 | tests/proxy_test_helper.c | |
+4 −4 | tests/proxy_test_helper.h | |
+2 −2 | tests/test_connection_manager.c | |
+78 −6 | tests/test_h1_client.c | |
+72 −4 | tests/test_h2_client.c | |
+2 −2 | tests/test_proxy.c | |
+1 −1 | tests/test_stream_manager.c |
Submodule aws-c-io
updated
12 files
+2 −2 | include/aws/io/channel_bootstrap.h | |
+1 −1 | include/aws/io/retry_strategy.h | |
+17 −1 | include/aws/io/socket.h | |
+6 −6 | source/channel_bootstrap.c | |
+1 −1 | source/exponential_backoff_retry_strategy.c | |
+2 −4 | source/pkcs11_tls_op_handler.c | |
+25 −28 | source/posix/socket.c | |
+75 −0 | source/socket_shared.c | |
+43 −33 | source/windows/iocp/socket.c | |
+1 −0 | tests/CMakeLists.txt | |
+53 −0 | tests/socket_test.c | |
+4 −4 | tests/tls_handler_test.c |
Submodule aws-c-mqtt
updated
11 files
Submodule aws-c-sdkutils
updated
8 files
Submodule aws-lc
updated
from e42a4e to dc4e28
Submodule s2n
updated
from 3526e6 to a9a07a
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
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
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
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
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