mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-17 17:47:12 +00:00
* Implemented should_sign_header callback * Added SigV4A to SigningAlgorithm * Added SigV4A test * Added debugging info to README * Fixed memory leak from argument vectors * Fixed memory leak of stream read buffers * Added support for callables as option values * Added should_sign_header support and test * Fixed ELG type bug exposed by aws-crt-ffi change * Updated to aws-crt-ffi v0.2.0
17 lines
419 B
C
17 lines
419 B
C
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
/* This is a unity-build style source file, as PHP's build system is simplest with 1 source file per extension */
|
|
|
|
#include "credentials.c"
|
|
#include "crt.c"
|
|
#include "event_loop.c"
|
|
#include "http.c"
|
|
#include "signing.c"
|
|
#include "stream.c"
|
|
// #include "hash.c"
|
|
#include "crc.c"
|
|
#include "php_util.c"
|