https: Fix build when http2 is disabled
This commit is contained in:
parent
c06e76f6fe
commit
740ebcd86e
@ -2285,7 +2285,7 @@ CURLcode Curl_http(struct connectdata *conn, bool *done)
|
|||||||
|
|
||||||
if(!(conn->handler->flags&PROTOPT_SSL) &&
|
if(!(conn->handler->flags&PROTOPT_SSL) &&
|
||||||
(data->set.httpversion == CURL_HTTP_VERSION_2_0)) {
|
(data->set.httpversion == CURL_HTTP_VERSION_2_0)) {
|
||||||
/* append HTTP2 updrade magic stuff to the HTTP request if it isn't done
|
/* append HTTP2 upgrade magic stuff to the HTTP request if it isn't done
|
||||||
over SSL */
|
over SSL */
|
||||||
result = Curl_http2_request_upgrade(req_buffer, conn);
|
result = Curl_http2_request_upgrade(req_buffer, conn);
|
||||||
if(result)
|
if(result)
|
||||||
|
10
lib/http2.h
10
lib/http2.h
@ -39,11 +39,11 @@ CURLcode Curl_http2_request_upgrade(Curl_send_buffer *req,
|
|||||||
CURLcode Curl_http2_setup(struct connectdata *conn);
|
CURLcode Curl_http2_setup(struct connectdata *conn);
|
||||||
int Curl_http2_switched(struct connectdata *conn);
|
int Curl_http2_switched(struct connectdata *conn);
|
||||||
#else /* USE_NGHTTP2 */
|
#else /* USE_NGHTTP2 */
|
||||||
#define Curl_http2_init(x)
|
#define Curl_http2_init(x) CURLE_UNSUPPORTED_PROTOCOL
|
||||||
#define Curl_http2_send_request(x)
|
#define Curl_http2_send_request(x) CURLE_UNSUPPORTED_PROTOCOL
|
||||||
#define Curl_http2_request_upgrade(x,y) CURLE_OK
|
#define Curl_http2_request_upgrade(x,y) CURLE_UNSUPPORTED_PROTOCOL
|
||||||
#define Curl_http2_switched(x)
|
#define Curl_http2_setup(x) CURLE_UNSUPPORTED_PROTOCOL
|
||||||
#define Curl_http2_setup(x) Curl_nop_stmt
|
#define Curl_http2_switched(x) (-1)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* HEADER_CURL_HTTP2_H */
|
#endif /* HEADER_CURL_HTTP2_H */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user