-
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.
Change
port
from uint16_t to uint32_t, to support VSOCK (#583)
- Loading branch information
Showing
30 changed files
with
62 additions
and
62 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
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
Submodule aws-c-auth
updated
6 files
Submodule aws-c-common
updated
3 files
+25 −3 | include/aws/common/uri.h | |
+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
9 files
+2 −2 | include/aws/io/channel_bootstrap.h | |
+17 −1 | include/aws/io/socket.h | |
+6 −6 | source/channel_bootstrap.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-s3
updated
34 files
Submodule aws-lc
updated
from 80f3f3 to dc4e28
Submodule s2n
updated
from 95753f 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
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
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
Oops, something went wrong.