summaryrefslogtreecommitdiffstats
path: root/contrib/restricted/aws/aws-c-http/source/http.c
diff options
context:
space:
mode:
authorthegeorg <[email protected]>2025-05-12 15:51:24 +0300
committerthegeorg <[email protected]>2025-05-12 16:06:27 +0300
commitd629bb70c8773d2c0c43f5088ddbb5a86d8c37ea (patch)
tree4f678e0d65ad08c800db21c657d3b0f71fafed06 /contrib/restricted/aws/aws-c-http/source/http.c
parent92c4b696d7a1c03d54e13aff7a7c20a078d90dd7 (diff)
Update contrib/restricted/aws libraries to nixpkgs 24.05
commit_hash:f8083acb039e6005e820cdee77b84e0a6b6c6d6d
Diffstat (limited to 'contrib/restricted/aws/aws-c-http/source/http.c')
-rw-r--r--contrib/restricted/aws/aws-c-http/source/http.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/restricted/aws/aws-c-http/source/http.c b/contrib/restricted/aws/aws-c-http/source/http.c
index 8a8fe92bd19..af61c51517a 100644
--- a/contrib/restricted/aws/aws-c-http/source/http.c
+++ b/contrib/restricted/aws/aws-c-http/source/http.c
@@ -148,6 +148,9 @@ static struct aws_error_info s_errors[] = {
AWS_DEFINE_ERROR_INFO_HTTP(
AWS_ERROR_HTTP_MANUAL_WRITE_HAS_COMPLETED,
"Manual write failed because manual writes are already completed."),
+ AWS_DEFINE_ERROR_INFO_HTTP(
+ AWS_ERROR_HTTP_RESPONSE_FIRST_BYTE_TIMEOUT,
+ "The server does not begin responding within the configuration after a request is fully sent."),
};
/* clang-format on */
@@ -537,7 +540,7 @@ void aws_http_library_clean_up(void) {
aws_io_library_clean_up();
}
-void aws_http_fatal_assert_library_initialized() {
+void aws_http_fatal_assert_library_initialized(void) {
if (!s_library_initialized) {
AWS_LOGF_FATAL(
AWS_LS_HTTP_GENERAL,