@@ -867,6 +867,11 @@ int aws_http_message_get_header(
867
867
return aws_http_headers_get_index (message -> headers , index , out_header );
868
868
}
869
869
870
+ AWS_FUTURE_T_POINTER_WITH_RELEASE_IMPLEMENTATION (
871
+ aws_future_http_message ,
872
+ struct aws_http_message ,
873
+ aws_http_message_release )
874
+
870
875
struct aws_http_stream * aws_http_connection_make_request (
871
876
struct aws_http_connection * client_connection ,
872
877
const struct aws_http_make_request_options * options ) {
@@ -952,8 +957,8 @@ struct aws_http_message *aws_http2_message_new_from_http1(
952
957
scheme_cursor .ptr );
953
958
954
959
/**
955
- * An intermediary that forwards a request over HTTP/2 MUST construct an ":authority" pseudo-header field using
956
- * the authority information from the control data of the original request. (RFC=9113 8.3.1)
960
+ * An intermediary that forwards a request over HTTP/2 MUST construct an ":authority" pseudo-header field
961
+ * using the authority information from the control data of the original request. (RFC=9113 8.3.1)
957
962
*/
958
963
struct aws_byte_cursor host_value ;
959
964
AWS_ZERO_STRUCT (host_value );
@@ -970,7 +975,8 @@ struct aws_http_message *aws_http2_message_new_from_http1(
970
975
(int )host_value .len ,
971
976
host_value .ptr );
972
977
}
973
- /* TODO: If the host headers is missing, the target URI could be the other source of the authority information
978
+ /* TODO: If the host headers is missing, the target URI could be the other source of the authority
979
+ * information
974
980
*/
975
981
976
982
struct aws_byte_cursor path_cursor ;
0 commit comments