File tree Expand file tree Collapse file tree 11 files changed +31
-2
lines changed Expand file tree Collapse file tree 11 files changed +31
-2
lines changed Original file line number Diff line number Diff line change 66 - ' main'
77
88env :
9- BUILDER_VERSION : v0.9.40
9+ BUILDER_VERSION : v0.9.43
1010 BUILDER_SOURCE : releases
1111 BUILDER_HOST : https://d19elf31gohf1l.cloudfront.net
1212 PACKAGE_NAME : aws-c-http
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ phases:
1010 pre_build :
1111 commands :
1212 - export CC=gcc-7
13- - export BUILDER_VERSION=v0.9.29
13+ - export BUILDER_VERSION=$(cat .github/workflows/ci.yml | grep 'BUILDER_VERSION:' | sed 's/\s*BUILDER_VERSION:\s*\(.*\)/\1/')
14+ - echo "Using builder version ${BUILDER_VERSION}"
1415 - export BUILDER_SOURCE=releases
1516 - export BUILDER_HOST=https://d19elf31gohf1l.cloudfront.net
1617 build :
Original file line number Diff line number Diff line change 88
99#include <aws/http/http.h>
1010
11+ AWS_PUSH_SANE_WARNING_LEVEL
12+
1113struct aws_client_bootstrap ;
1214struct aws_socket_options ;
1315struct aws_socket_endpoint ;
@@ -688,5 +690,6 @@ AWS_HTTP_API
688690void aws_http2_connection_update_window (struct aws_http_connection * http2_connection , uint32_t increment_size );
689691
690692AWS_EXTERN_C_END
693+ AWS_POP_SANE_WARNING_LEVEL
691694
692695#endif /* AWS_HTTP_CONNECTION_H */
Original file line number Diff line number Diff line change 1010
1111#include <aws/common/byte_buf.h>
1212
13+ AWS_PUSH_SANE_WARNING_LEVEL
14+
1315struct aws_client_bootstrap ;
1416struct aws_http_connection ;
1517struct aws_http_connection_manager ;
@@ -190,5 +192,6 @@ void aws_http_connection_manager_fetch_metrics(
190192 struct aws_http_manager_metrics * out_metrics );
191193
192194AWS_EXTERN_C_END
195+ AWS_POP_SANE_WARNING_LEVEL
193196
194197#endif /* AWS_HTTP_CONNECTION_MANAGER_H */
Original file line number Diff line number Diff line change 1010#include <aws/http/exports.h>
1111#include <aws/io/io.h>
1212
13+ AWS_PUSH_SANE_WARNING_LEVEL
14+
1315#define AWS_C_HTTP_PACKAGE_ID 2
1416
1517enum aws_http_errors {
@@ -154,5 +156,6 @@ AWS_HTTP_API extern const struct aws_byte_cursor aws_http_scheme_http;
154156AWS_HTTP_API extern const struct aws_byte_cursor aws_http_scheme_https ;
155157
156158AWS_EXTERN_C_END
159+ AWS_POP_SANE_WARNING_LEVEL
157160
158161#endif /* AWS_HTTP_H */
Original file line number Diff line number Diff line change 88
99#include <aws/http/http.h>
1010
11+ AWS_PUSH_SANE_WARNING_LEVEL
12+
1113struct aws_http2_stream_manager ;
1214struct aws_client_bootstrap ;
1315struct aws_http_connection ;
@@ -212,4 +214,6 @@ void aws_http2_stream_manager_fetch_metrics(
212214 struct aws_http_manager_metrics * out_metrics );
213215
214216AWS_EXTERN_C_END
217+ AWS_POP_SANE_WARNING_LEVEL
218+
215219#endif /* AWS_HTTP2_STREAM_MANAGER_H */
Original file line number Diff line number Diff line change 1111#include <aws/http/request_response.h>
1212#include <aws/http/status_code.h>
1313
14+ AWS_PUSH_SANE_WARNING_LEVEL
15+
1416struct aws_http_client_connection_options ;
1517struct aws_http_connection_manager_options ;
1618
@@ -566,5 +568,6 @@ AWS_HTTP_API int aws_http_proxy_new_socket_channel(
566568 const struct aws_http_proxy_options * proxy_options );
567569
568570AWS_EXTERN_C_END
571+ AWS_POP_SANE_WARNING_LEVEL
569572
570573#endif /* AWS_PROXY_STRATEGY_H */
Original file line number Diff line number Diff line change 88
99#include <aws/http/http.h>
1010
11+ AWS_PUSH_SANE_WARNING_LEVEL
12+
1113struct aws_http_connection ;
1214struct aws_input_stream ;
1315
@@ -1121,5 +1123,6 @@ AWS_HTTP_API
11211123int aws_http2_stream_get_sent_reset_error_code (struct aws_http_stream * http2_stream , uint32_t * out_http2_error );
11221124
11231125AWS_EXTERN_C_END
1126+ AWS_POP_SANE_WARNING_LEVEL
11241127
11251128#endif /* AWS_HTTP_REQUEST_RESPONSE_H */
Original file line number Diff line number Diff line change 88
99#include <aws/http/http.h>
1010
11+ AWS_PUSH_SANE_WARNING_LEVEL
12+
1113struct aws_http_connection ;
1214struct aws_server_bootstrap ;
1315struct aws_socket_options ;
@@ -194,5 +196,6 @@ AWS_HTTP_API
194196bool aws_http_connection_is_server (const struct aws_http_connection * connection );
195197
196198AWS_EXTERN_C_END
199+ AWS_POP_SANE_WARNING_LEVEL
197200
198201#endif /* AWS_HTTP_SERVER_H */
Original file line number Diff line number Diff line change 1010
1111#include <aws/common/statistics.h>
1212
13+ AWS_PUSH_SANE_WARNING_LEVEL
14+
1315enum aws_crt_http_statistics_category {
1416 AWSCRT_STAT_CAT_HTTP1_CHANNEL = AWS_CRT_STATISTICS_CATEGORY_BEGIN_RANGE (AWS_C_HTTP_PACKAGE_ID ),
1517 AWSCRT_STAT_CAT_HTTP2_CHANNEL ,
@@ -71,5 +73,6 @@ AWS_HTTP_API
7173void aws_crt_statistics_http2_channel_reset (struct aws_crt_statistics_http2_channel * stats );
7274
7375AWS_EXTERN_C_END
76+ AWS_POP_SANE_WARNING_LEVEL
7477
7578#endif /* AWS_HTTP_STATISTICS_H */
You can’t perform that action at this time.
0 commit comments