File tree 11 files changed +31
-2
lines changed
11 files changed +31
-2
lines changed Original file line number Diff line number Diff line change 6
6
- ' main'
7
7
8
8
env :
9
- BUILDER_VERSION : v0.9.40
9
+ BUILDER_VERSION : v0.9.43
10
10
BUILDER_SOURCE : releases
11
11
BUILDER_HOST : https://d19elf31gohf1l.cloudfront.net
12
12
PACKAGE_NAME : aws-c-http
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ phases:
10
10
pre_build :
11
11
commands :
12
12
- 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}"
14
15
- export BUILDER_SOURCE=releases
15
16
- export BUILDER_HOST=https://d19elf31gohf1l.cloudfront.net
16
17
build :
Original file line number Diff line number Diff line change 8
8
9
9
#include <aws/http/http.h>
10
10
11
+ AWS_PUSH_SANE_WARNING_LEVEL
12
+
11
13
struct aws_client_bootstrap ;
12
14
struct aws_socket_options ;
13
15
struct aws_socket_endpoint ;
@@ -688,5 +690,6 @@ AWS_HTTP_API
688
690
void aws_http2_connection_update_window (struct aws_http_connection * http2_connection , uint32_t increment_size );
689
691
690
692
AWS_EXTERN_C_END
693
+ AWS_POP_SANE_WARNING_LEVEL
691
694
692
695
#endif /* AWS_HTTP_CONNECTION_H */
Original file line number Diff line number Diff line change 10
10
11
11
#include <aws/common/byte_buf.h>
12
12
13
+ AWS_PUSH_SANE_WARNING_LEVEL
14
+
13
15
struct aws_client_bootstrap ;
14
16
struct aws_http_connection ;
15
17
struct aws_http_connection_manager ;
@@ -190,5 +192,6 @@ void aws_http_connection_manager_fetch_metrics(
190
192
struct aws_http_manager_metrics * out_metrics );
191
193
192
194
AWS_EXTERN_C_END
195
+ AWS_POP_SANE_WARNING_LEVEL
193
196
194
197
#endif /* AWS_HTTP_CONNECTION_MANAGER_H */
Original file line number Diff line number Diff line change 10
10
#include <aws/http/exports.h>
11
11
#include <aws/io/io.h>
12
12
13
+ AWS_PUSH_SANE_WARNING_LEVEL
14
+
13
15
#define AWS_C_HTTP_PACKAGE_ID 2
14
16
15
17
enum aws_http_errors {
@@ -154,5 +156,6 @@ AWS_HTTP_API extern const struct aws_byte_cursor aws_http_scheme_http;
154
156
AWS_HTTP_API extern const struct aws_byte_cursor aws_http_scheme_https ;
155
157
156
158
AWS_EXTERN_C_END
159
+ AWS_POP_SANE_WARNING_LEVEL
157
160
158
161
#endif /* AWS_HTTP_H */
Original file line number Diff line number Diff line change 8
8
9
9
#include <aws/http/http.h>
10
10
11
+ AWS_PUSH_SANE_WARNING_LEVEL
12
+
11
13
struct aws_http2_stream_manager ;
12
14
struct aws_client_bootstrap ;
13
15
struct aws_http_connection ;
@@ -212,4 +214,6 @@ void aws_http2_stream_manager_fetch_metrics(
212
214
struct aws_http_manager_metrics * out_metrics );
213
215
214
216
AWS_EXTERN_C_END
217
+ AWS_POP_SANE_WARNING_LEVEL
218
+
215
219
#endif /* AWS_HTTP2_STREAM_MANAGER_H */
Original file line number Diff line number Diff line change 11
11
#include <aws/http/request_response.h>
12
12
#include <aws/http/status_code.h>
13
13
14
+ AWS_PUSH_SANE_WARNING_LEVEL
15
+
14
16
struct aws_http_client_connection_options ;
15
17
struct aws_http_connection_manager_options ;
16
18
@@ -566,5 +568,6 @@ AWS_HTTP_API int aws_http_proxy_new_socket_channel(
566
568
const struct aws_http_proxy_options * proxy_options );
567
569
568
570
AWS_EXTERN_C_END
571
+ AWS_POP_SANE_WARNING_LEVEL
569
572
570
573
#endif /* AWS_PROXY_STRATEGY_H */
Original file line number Diff line number Diff line change 8
8
9
9
#include <aws/http/http.h>
10
10
11
+ AWS_PUSH_SANE_WARNING_LEVEL
12
+
11
13
struct aws_http_connection ;
12
14
struct aws_input_stream ;
13
15
@@ -1121,5 +1123,6 @@ AWS_HTTP_API
1121
1123
int aws_http2_stream_get_sent_reset_error_code (struct aws_http_stream * http2_stream , uint32_t * out_http2_error );
1122
1124
1123
1125
AWS_EXTERN_C_END
1126
+ AWS_POP_SANE_WARNING_LEVEL
1124
1127
1125
1128
#endif /* AWS_HTTP_REQUEST_RESPONSE_H */
Original file line number Diff line number Diff line change 8
8
9
9
#include <aws/http/http.h>
10
10
11
+ AWS_PUSH_SANE_WARNING_LEVEL
12
+
11
13
struct aws_http_connection ;
12
14
struct aws_server_bootstrap ;
13
15
struct aws_socket_options ;
@@ -194,5 +196,6 @@ AWS_HTTP_API
194
196
bool aws_http_connection_is_server (const struct aws_http_connection * connection );
195
197
196
198
AWS_EXTERN_C_END
199
+ AWS_POP_SANE_WARNING_LEVEL
197
200
198
201
#endif /* AWS_HTTP_SERVER_H */
Original file line number Diff line number Diff line change 10
10
11
11
#include <aws/common/statistics.h>
12
12
13
+ AWS_PUSH_SANE_WARNING_LEVEL
14
+
13
15
enum aws_crt_http_statistics_category {
14
16
AWSCRT_STAT_CAT_HTTP1_CHANNEL = AWS_CRT_STATISTICS_CATEGORY_BEGIN_RANGE (AWS_C_HTTP_PACKAGE_ID ),
15
17
AWSCRT_STAT_CAT_HTTP2_CHANNEL ,
@@ -71,5 +73,6 @@ AWS_HTTP_API
71
73
void aws_crt_statistics_http2_channel_reset (struct aws_crt_statistics_http2_channel * stats );
72
74
73
75
AWS_EXTERN_C_END
76
+ AWS_POP_SANE_WARNING_LEVEL
74
77
75
78
#endif /* AWS_HTTP_STATISTICS_H */
Original file line number Diff line number Diff line change 7
7
8
8
#include <aws/http/http.h>
9
9
10
+ AWS_PUSH_SANE_WARNING_LEVEL
11
+
10
12
struct aws_http_header ;
11
13
struct aws_http_message ;
12
14
@@ -485,5 +487,6 @@ struct aws_http_message *aws_http_message_new_websocket_handshake_request(
485
487
struct aws_byte_cursor host );
486
488
487
489
AWS_EXTERN_C_END
490
+ AWS_POP_SANE_WARNING_LEVEL
488
491
489
492
#endif /* AWS_HTTP_WEBSOCKET_H */
You can’t perform that action at this time.
0 commit comments