mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
gtls: fix build with HTTP2
This commit is contained in:
parent
31c8f8ac11
commit
676ac46ff5
@ -626,7 +626,7 @@ gtls_connect_step1(struct connectdata *conn,
|
||||
gnutls_alpn_set_protocols(session, protocols, protocols_size, 0);
|
||||
infof(data, "ALPN, offering %s, %s\n", NGHTTP2_PROTO_VERSION_ID,
|
||||
ALPN_HTTP_1_1);
|
||||
connssl->asked_for_h2 = TRUE;
|
||||
conn->ssl[sockindex].asked_for_h2 = TRUE;
|
||||
}
|
||||
else {
|
||||
infof(data, "SSL, can't negotiate HTTP/2.0 without ALPN\n");
|
||||
@ -1083,7 +1083,7 @@ gtls_connect_step3(struct connectdata *conn,
|
||||
conn->negnpn = NPN_HTTP1_1;
|
||||
}
|
||||
}
|
||||
else if(connssl->asked_for_h2) {
|
||||
else if(conn->ssl[sockindex].asked_for_h2) {
|
||||
infof(data, "ALPN, server did not agree to a protocol\n");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user