-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
17 additions
and
42 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-auth
updated
4 files
+1 −16 | source/credentials_provider_default_chain.c | |
+24 −0 | source/credentials_provider_profile.c | |
+1 −0 | tests/CMakeLists.txt | |
+48 −0 | tests/credentials_provider_process_tests.c |
Submodule aws-c-common
updated
4 files
+19 −4 | cmake/AwsCheckHeaders.cmake | |
+73 −0 | cmake/AwsPrebuildDependency.cmake | |
+1 −1 | include/aws/common/array_list.inl | |
+8 −1 | include/aws/common/math.inl |
Submodule aws-c-event-stream
updated
6 files
+12 −3 | .github/workflows/ci.yml | |
+4 −8 | .github/workflows/clang-format.yml | |
+7 −4 | .github/workflows/stale_issue.yml | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+4 −2 | include/aws/event-stream/event_stream.h |
Submodule aws-c-http
updated
11 files
+14 −0 | include/aws/http/connection_manager.h | |
+2 −0 | include/aws/http/http.h | |
+9 −1 | include/aws/http/private/h1_connection.h | |
+155 −47 | source/connection_manager.c | |
+68 −9 | source/h1_connection.c | |
+6 −0 | source/http.c | |
+61 −64 | source/websocket.c | |
+7 −0 | tests/CMakeLists.txt | |
+82 −2 | tests/test_connection_manager.c | |
+214 −0 | tests/test_h1_client.c | |
+32 −0 | tests/test_websocket_handler.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,19 @@ | ||
#ifdef __APPLE__ | ||
# include <TargetConditionals.h> | ||
#endif | ||
|
||
#ifndef AWS_COMMON_CONFIG_H | ||
# define AWS_COMMON_CONFIG_H | ||
/** | ||
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
* SPDX-License-Identifier: Apache-2.0. | ||
*/ | ||
|
||
#ifndef AWS_COMMON_CONFIG_H | ||
#define AWS_COMMON_CONFIG_H | ||
/* | ||
* This header exposes compiler feature test results determined during cmake | ||
* configure time to inline function implementations. The macros defined here | ||
* should be considered to be an implementation detail, and can change at any | ||
* time. | ||
*/ | ||
# if TARGET_OS_IPHONE | ||
# define AWS_HAVE_GCC_OVERFLOW_MATH_EXTENSIONS | ||
# define AWS_HAVE_GCC_INLINE_ASM | ||
/* #undef AWS_HAVE_MSVC_MULX */ | ||
# define AWS_C_CAL_OPENSSLCRYPTO_COMMON_H | ||
# elif TARGET_OS_SIMULATOR | ||
# define AWS_HAVE_GCC_OVERFLOW_MATH_EXTENSIONS | ||
# define AWS_HAVE_GCC_INLINE_ASM | ||
/* #undef AWS_HAVE_MSVC_MULX */ | ||
# define AWS_C_CAL_OPENSSLCRYPTO_COMMON_H | ||
# elif TARGET_OS_MAC | ||
# define AWS_HAVE_GCC_OVERFLOW_MATH_EXTENSIONS | ||
# define AWS_HAVE_GCC_INLINE_ASM | ||
/* #undef AWS_HAVE_MSVC_MULX */ | ||
# define AWS_C_CAL_OPENSSLCRYPTO_COMMON_H | ||
# endif | ||
#else | ||
# define AWS_HAVE_GCC_OVERFLOW_MATH_EXTENSIONS | ||
# define AWS_HAVE_GCC_INLINE_ASM | ||
/* #undef AWS_HAVE_MSVC_MULX */ | ||
# define AWS_C_CAL_OPENSSLCRYPTO_COMMON_H | ||
#endif | ||
#define AWS_HAVE_GCC_OVERFLOW_MATH_EXTENSIONS | ||
#define AWS_HAVE_GCC_INLINE_ASM | ||
#define AWS_UNSTABLE_TESTING_API 1 | ||
|
||
#define AWS_AFFINITY_METHOD 0 | ||
|
||
#define AWS_HAVE_EXECINFO 1 | ||
/* Disable Intel VTune tracing API here since aws-crt-swift doesn't use CMake */ | ||
#define INTEL_NO_ITTNOTIFY_API | ||
|
||
/* Don't use APIs forbidden by App Stores (e.g. non-public system APIs) */ | ||
#define AWS_APPSTORE_SAFE 1 | ||
#endif |