-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AwsSigningConfig.signed_body_value is now a string instead of an enum (…
…#172) This allows precalculated hashes to be used.
- Loading branch information
Showing
11 changed files
with
118 additions
and
53 deletions.
There are no files selected for viewing
Submodule aws-c-auth
updated
20 files
Submodule aws-c-common
updated
44 files
Submodule aws-c-http
updated
10 files
+3 −1 | include/aws/http/private/h2_frames.h | |
+1 −0 | include/aws/http/websocket.h | |
+2 −1 | source/connection.c | |
+5 −1 | source/connection_manager.c | |
+1 −1 | source/h2_decoder.c | |
+1 −2 | source/h2_frames.c | |
+2 −1 | source/proxy_connection.c | |
+1 −1 | source/request_response.c | |
+3 −27 | source/strutil.c | |
+39 −0 | source/websocket.c |
Submodule aws-c-io
updated
14 files
+8 −0 | CMakeLists.txt | |
+3 −1 | README.md | |
+7 −5 | include/aws/io/socket.h | |
+24 −1 | include/aws/io/uri.h | |
+3 −4 | source/host_resolver.c | |
+1 −3 | source/posix/host_resolver.c | |
+64 −1 | source/posix/socket.c | |
+1 −1 | source/tls_channel_handler.c | |
+65 −50 | source/uri.c | |
+1 −1 | source/windows/file_utils.c | |
+1 −1 | source/windows/host_resolver.c | |
+4 −0 | tests/CMakeLists.txt | |
+29 −0 | tests/socket_test.c | |
+110 −3 | tests/uri_test.c |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Minimal makefile for Sphinx documentation | ||
# | ||
|
||
# You can set these variables from the command line, and also | ||
# from the environment for the first two. | ||
SPHINXOPTS ?= | ||
SPHINXBUILD ?= sphinx-build | ||
SOURCEDIR = source | ||
BUILDDIR = build | ||
|
||
# Put it first so that "make" without argument is like "make help". | ||
help: | ||
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | ||
|
||
.PHONY: help Makefile | ||
|
||
# Catch-all target: route all unknown targets to Sphinx using the new | ||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). | ||
%: Makefile | ||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
pushd `dirname $0`/docsrc > /dev/null | ||
make html | ||
cp -a build/html/. ../docs | ||
popd > /dev/null |
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