Skip to content

Commit 5b49807

Browse files
jasnelltargos
authored andcommitted
deps: re-enable OPENSSL_NO_QUIC guards
PR-URL: #34033 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> PR-URL: #36520 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com>
1 parent 309e297 commit 5b49807

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

deps/openssl/openssl/ssl/ssl_quic.c

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
* https://www.openssl.org/source/license.html
88
*/
99

10+
#ifndef OPENSSL_NO_QUIC
11+
1012
#include "ssl_local.h"
1113
#include "internal/cryptlib.h"
1214
#include "internal/refcount.h"
@@ -293,3 +295,5 @@ int SSL_is_quic(SSL* ssl)
293295
{
294296
return SSL_IS_QUIC(ssl);
295297
}
298+
299+
#endif // OPENSSL_NO_QUIC

deps/openssl/openssl/ssl/statem/statem_quic.c

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
* https://www.openssl.org/source/license.html
88
*/
99

10+
#ifndef OPENSSL_NO_QUIC
11+
1012
#include "../ssl_local.h"
1113
#include "statem_local.h"
1214
#include "internal/cryptlib.h"
@@ -116,3 +118,5 @@ int quic_get_message(SSL *s, int *mt, size_t *len)
116118

117119
return 1;
118120
}
121+
122+
#endif // OPENSSL_NO_QUIC

0 commit comments

Comments
 (0)