-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support machines with multiple NICs #576
Merged
Merged
Changes from 25 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
14efed9
initial wip
waahm7 e21ae79
wip
waahm7 6b0f9a6
if check before release
waahm7 c32b167
add test
waahm7 09bce25
improve error handling
waahm7 ba7de63
add docs
waahm7 dd1ef85
update docs
waahm7 88ce700
lint
waahm7 4c923f2
update logic
waahm7 7d85fc1
better error handling
waahm7 ced3fd0
s3 client mem release
waahm7 bf48f38
move pycore back to end
waahm7 36af146
use the pysequence API
waahm7 89c61e0
update docs
waahm7 48fc70e
cleanup
waahm7 d72a5ea
more cleanup
waahm7 fc5ffb8
cleanup
waahm7 0ae4e04
Update source/s3_client.c
waahm7 503b938
error checking and decref for get item.
waahm7 1d22f3d
fix loop
waahm7 93fd4df
lint
waahm7 461d5e0
Update source/s3_client.c
waahm7 7cf9110
move back to list api
waahm7 a0825e0
fix blank line
waahm7 f7e1537
Merge branch 'main' into bind-network-interface
waahm7 cab8e12
latest submodules
waahm7 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
22 files
+1 −1 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+4 −1 | include/aws/http/connection.h | |
+13 −0 | include/aws/http/connection_manager.h | |
+3 −1 | include/aws/http/private/h2_frames.h | |
+7 −7 | include/aws/http/proxy.h | |
+3 −1 | include/aws/http/request_response.h | |
+9 −4 | include/aws/http/server.h | |
+61 −1 | source/connection_manager.c | |
+1 −1 | source/http.c | |
+1 −0 | tests/CMakeLists.txt | |
+48 −0 | tests/test_connection_manager.c | |
+5 −5 | tests/test_h1_client.c | |
+4 −1 | tests/test_h2_client.c | |
+2 −1 | tests/test_h2_encoder.c | |
+2 −1 | tests/test_h2_headers.c | |
+4 −1 | tests/test_localhost_integ.c | |
+4 −1 | tests/test_message.c | |
+4 −1 | tests/test_stream_manager.c | |
+3 −1 | tests/test_websocket_handler.c |
Submodule aws-c-io
updated
15 files
+4 −6 | .github/workflows/clang-format.yml | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+3 −4 | include/aws/io/channel_bootstrap.h | |
+3 −4 | include/aws/io/event_loop.h | |
+12 −0 | include/aws/io/socket.h | |
+4 −5 | include/aws/io/tls_channel_handler.h | |
+1 −2 | source/darwin/secure_transport_tls_channel_handler.c | |
+1 −1 | source/io.c | |
+90 −2 | source/posix/socket.c | |
+1 −1 | source/windows/iocp/iocp_event_loop.c | |
+19 −0 | source/windows/iocp/socket.c | |
+2 −0 | tests/CMakeLists.txt | |
+1 −1 | tests/socket_handler_test.c | |
+82 −7 | tests/socket_test.c |
Submodule aws-c-s3
updated
8 files
+17 −0 | include/aws/s3/private/s3_client_impl.h | |
+13 −0 | include/aws/s3/s3_client.h | |
+48 −1 | source/s3_client.c | |
+11 −3 | source/s3_endpoint.c | |
+1 −0 | tests/CMakeLists.txt | |
+60 −0 | tests/s3_mock_server_tests.c | |
+4 −0 | tests/s3_tester.c | |
+2 −0 | tests/s3_tester.h |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added the assert again because we will be converting it to a list.