Skip to content

Commit 38f3f11

Browse files
vadzz-devxLuxy
andcommitted
ALTV-380 Bump nodejs to 22.8.0
Co-authored-by: xLuxy <67131061+xLuxy@users.noreply.github.com>
1 parent a59e8e6 commit 38f3f11

File tree

3,813 files changed

+1344632
-43353
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,813 files changed

+1344632
-43353
lines changed

server/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ include_directories(
7171
deps/nodejs/deps/v8/include
7272
deps/nodejs/deps/uv/include
7373
deps/nodejs/deps/openssl/openssl/include
74+
deps/nodejs/deps/simdjson
7475
../shared
7576
../shared/deps
7677
)

server/cmake/DepsDownload.cmake

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ include(../shared/cmake/DepsHelpers.cmake)
22

33
# Set this to false, when using a custom nodejs build for testing
44
set(__deps_check_enabled true)
5+
set(NODEJS_VERSION "22.8.0")
56

67
function(DownloadDeps)
78
set(__base_path "${PROJECT_SOURCE_DIR}/deps/nodejs/lib")
89

910
GetBranchAndOS(__deps_branch __deps_os_path_name)
10-
set(__deps_url_base_path "https://cdn.alt-mp.com/deps/nodejs/${__deps_branch}/${__deps_os_path_name}")
11+
set(__deps_url_base_path "https://cdn.alt-mp.com/deps/nodejs/${NODEJS_VERSION}/${__deps_os_path_name}")
1112

1213
if(__deps_check_enabled)
1314
if(WIN32)
@@ -35,8 +36,6 @@ function(DownloadDeps)
3536
DownloadFile("libnode.so.108" "${__base_path}" "" ${__deps_linux_hashes})
3637
endif()
3738

38-
if(__deps_current_version)
39-
message("NodeJS deps version: ${__deps_current_version}")
40-
endif()
39+
message("NodeJS deps version: ${NODEJS_VERSION}")
4140
endif()
4241
endfunction()

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/asm/crypto/buildinf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212

1313
#define PLATFORM "platform: BSD-x86"
14-
#define DATE "built on: Thu Nov 3 02:13:54 2022 UTC"
14+
#define DATE "built on: Wed Jan 31 12:57:29 2024 UTC"
1515

1616
/*
1717
* Generate compiler_flags as an array of individual characters. This is a

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/asm/include/openssl/bio.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ int BIO_meth_set_puts(BIO_METHOD *biom,
867867
int (*puts) (BIO *, const char *));
868868
int (*BIO_meth_get_gets(const BIO_METHOD *biom)) (BIO *, char *, int);
869869
int BIO_meth_set_gets(BIO_METHOD *biom,
870-
int (*gets) (BIO *, char *, int));
870+
int (*ossl_gets) (BIO *, char *, int));
871871
long (*BIO_meth_get_ctrl(const BIO_METHOD *biom)) (BIO *, int, long, void *);
872872
int BIO_meth_set_ctrl(BIO_METHOD *biom,
873873
long (*ctrl) (BIO *, int, long, void *));

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/asm/include/openssl/cmp.h

+14-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* WARNING: do not edit!
33
* Generated by Makefile from include/openssl/cmp.h.in
44
*
5-
* Copyright 2007-2021 The OpenSSL Project Authors. All Rights Reserved.
5+
* Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
66
* Copyright Nokia 2007-2019
77
* Copyright Siemens AG 2015-2019
88
*
@@ -193,13 +193,16 @@ typedef ASN1_BIT_STRING OSSL_CMP_PKIFAILUREINFO;
193193
* -- CertReqMsg
194194
* }
195195
*/
196-
# define OSSL_CMP_PKISTATUS_accepted 0
197-
# define OSSL_CMP_PKISTATUS_grantedWithMods 1
198-
# define OSSL_CMP_PKISTATUS_rejection 2
199-
# define OSSL_CMP_PKISTATUS_waiting 3
200-
# define OSSL_CMP_PKISTATUS_revocationWarning 4
196+
# define OSSL_CMP_PKISTATUS_request -3
197+
# define OSSL_CMP_PKISTATUS_trans -2
198+
# define OSSL_CMP_PKISTATUS_unspecified -1
199+
# define OSSL_CMP_PKISTATUS_accepted 0
200+
# define OSSL_CMP_PKISTATUS_grantedWithMods 1
201+
# define OSSL_CMP_PKISTATUS_rejection 2
202+
# define OSSL_CMP_PKISTATUS_waiting 3
203+
# define OSSL_CMP_PKISTATUS_revocationWarning 4
201204
# define OSSL_CMP_PKISTATUS_revocationNotification 5
202-
# define OSSL_CMP_PKISTATUS_keyUpdateWarning 6
205+
# define OSSL_CMP_PKISTATUS_keyUpdateWarning 6
203206

204207
typedef ASN1_INTEGER OSSL_CMP_PKISTATUS;
205208
DECLARE_ASN1_ITEM(OSSL_CMP_PKISTATUS)
@@ -439,11 +442,12 @@ int OSSL_CMP_CTX_build_cert_chain(OSSL_CMP_CTX *ctx, X509_STORE *own_trusted,
439442
int OSSL_CMP_CTX_set1_pkey(OSSL_CMP_CTX *ctx, EVP_PKEY *pkey);
440443
int OSSL_CMP_CTX_set1_referenceValue(OSSL_CMP_CTX *ctx,
441444
const unsigned char *ref, int len);
442-
int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx, const unsigned char *sec,
443-
const int len);
445+
int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx,
446+
const unsigned char *sec, int len);
444447
/* CMP message header and extra certificates: */
445448
int OSSL_CMP_CTX_set1_recipient(OSSL_CMP_CTX *ctx, const X509_NAME *name);
446449
int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
450+
int OSSL_CMP_CTX_reset_geninfo_ITAVs(OSSL_CMP_CTX *ctx);
447451
int OSSL_CMP_CTX_set1_extraCertsOut(OSSL_CMP_CTX *ctx,
448452
STACK_OF(X509) *extraCertsOut);
449453
/* certificate template: */
@@ -499,6 +503,7 @@ ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_recipNonce(const OSSL_CMP_PKIHEADER *hdr);
499503
OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
500504
int OSSL_CMP_MSG_get_bodytype(const OSSL_CMP_MSG *msg);
501505
int OSSL_CMP_MSG_update_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
506+
int OSSL_CMP_MSG_update_recipNonce(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
502507
OSSL_CRMF_MSG *OSSL_CMP_CTX_setup_CRM(OSSL_CMP_CTX *ctx, int for_KUR, int rid);
503508
OSSL_CMP_MSG *OSSL_CMP_MSG_read(const char *file, OSSL_LIB_CTX *libctx,
504509
const char *propq);

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/asm/include/openssl/opensslv.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ extern "C" {
2929
*/
3030
# define OPENSSL_VERSION_MAJOR 3
3131
# define OPENSSL_VERSION_MINOR 0
32-
# define OPENSSL_VERSION_PATCH 7
32+
# define OPENSSL_VERSION_PATCH 13
3333

3434
/*
3535
* Additional version information
@@ -74,21 +74,21 @@ extern "C" {
7474
* longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
7575
* OPENSSL_VERSION_BUILD_METADATA_STR appended.
7676
*/
77-
# define OPENSSL_VERSION_STR "3.0.7"
78-
# define OPENSSL_FULL_VERSION_STR "3.0.7+quic"
77+
# define OPENSSL_VERSION_STR "3.0.13"
78+
# define OPENSSL_FULL_VERSION_STR "3.0.13+quic"
7979

8080
/*
8181
* SECTION 3: ADDITIONAL METADATA
8282
*
8383
* These strings are defined separately to allow them to be parsable.
8484
*/
85-
# define OPENSSL_RELEASE_DATE "1 Nov 2022"
85+
# define OPENSSL_RELEASE_DATE "30 Jan 2024"
8686

8787
/*
8888
* SECTION 4: BACKWARD COMPATIBILITY
8989
*/
9090

91-
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.7+quic 1 Nov 2022"
91+
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.13+quic 30 Jan 2024"
9292

9393
/* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
9494
# ifdef OPENSSL_VERSION_PRE_RELEASE

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/asm/include/openssl/pkcs7.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* WARNING: do not edit!
33
* Generated by Makefile from include/openssl/pkcs7.h.in
44
*
5-
* Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
5+
* Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
66
*
77
* Licensed under the Apache License 2.0 (the "License"). You may not use
88
* this file except in compliance with the License. You can obtain a copy
@@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
5656
PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
5757
X509_ALGOR *digest_alg;
5858
STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
59-
X509_ALGOR *digest_enc_alg;
60-
ASN1_OCTET_STRING *enc_digest;
59+
X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
60+
ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
6161
STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
6262
/* The private key to sign with */
6363
EVP_PKEY *pkey;

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/asm/include/openssl/x509v3.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* WARNING: do not edit!
33
* Generated by Makefile from include/openssl/x509v3.h.in
44
*
5-
* Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved.
5+
* Copyright 1999-2023 The OpenSSL Project Authors. All Rights Reserved.
66
*
77
* Licensed under the Apache License 2.0 (the "License"). You may not use
88
* this file except in compliance with the License. You can obtain a copy
@@ -177,7 +177,7 @@ typedef struct GENERAL_NAME_st {
177177
OTHERNAME *otherName; /* otherName */
178178
ASN1_IA5STRING *rfc822Name;
179179
ASN1_IA5STRING *dNSName;
180-
ASN1_TYPE *x400Address;
180+
ASN1_STRING *x400Address;
181181
X509_NAME *directoryName;
182182
EDIPARTYNAME *ediPartyName;
183183
ASN1_IA5STRING *uniformResourceIdentifier;

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/asm/include/progs.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* WARNING: do not edit!
33
* Generated by apps/progs.pl
44
*
5-
* Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5+
* Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved.
66
*
77
* Licensed under the Apache License 2.0 (the "License"). You may not use
88
* this file except in compliance with the License. You can obtain a copy

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/asm_avx2/crypto/buildinf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212

1313
#define PLATFORM "platform: BSD-x86"
14-
#define DATE "built on: Thu Nov 3 02:14:03 2022 UTC"
14+
#define DATE "built on: Wed Jan 31 12:57:42 2024 UTC"
1515

1616
/*
1717
* Generate compiler_flags as an array of individual characters. This is a

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/bio.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ int BIO_meth_set_puts(BIO_METHOD *biom,
867867
int (*puts) (BIO *, const char *));
868868
int (*BIO_meth_get_gets(const BIO_METHOD *biom)) (BIO *, char *, int);
869869
int BIO_meth_set_gets(BIO_METHOD *biom,
870-
int (*gets) (BIO *, char *, int));
870+
int (*ossl_gets) (BIO *, char *, int));
871871
long (*BIO_meth_get_ctrl(const BIO_METHOD *biom)) (BIO *, int, long, void *);
872872
int BIO_meth_set_ctrl(BIO_METHOD *biom,
873873
long (*ctrl) (BIO *, int, long, void *));

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/cmp.h

+14-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* WARNING: do not edit!
33
* Generated by Makefile from include/openssl/cmp.h.in
44
*
5-
* Copyright 2007-2021 The OpenSSL Project Authors. All Rights Reserved.
5+
* Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
66
* Copyright Nokia 2007-2019
77
* Copyright Siemens AG 2015-2019
88
*
@@ -193,13 +193,16 @@ typedef ASN1_BIT_STRING OSSL_CMP_PKIFAILUREINFO;
193193
* -- CertReqMsg
194194
* }
195195
*/
196-
# define OSSL_CMP_PKISTATUS_accepted 0
197-
# define OSSL_CMP_PKISTATUS_grantedWithMods 1
198-
# define OSSL_CMP_PKISTATUS_rejection 2
199-
# define OSSL_CMP_PKISTATUS_waiting 3
200-
# define OSSL_CMP_PKISTATUS_revocationWarning 4
196+
# define OSSL_CMP_PKISTATUS_request -3
197+
# define OSSL_CMP_PKISTATUS_trans -2
198+
# define OSSL_CMP_PKISTATUS_unspecified -1
199+
# define OSSL_CMP_PKISTATUS_accepted 0
200+
# define OSSL_CMP_PKISTATUS_grantedWithMods 1
201+
# define OSSL_CMP_PKISTATUS_rejection 2
202+
# define OSSL_CMP_PKISTATUS_waiting 3
203+
# define OSSL_CMP_PKISTATUS_revocationWarning 4
201204
# define OSSL_CMP_PKISTATUS_revocationNotification 5
202-
# define OSSL_CMP_PKISTATUS_keyUpdateWarning 6
205+
# define OSSL_CMP_PKISTATUS_keyUpdateWarning 6
203206

204207
typedef ASN1_INTEGER OSSL_CMP_PKISTATUS;
205208
DECLARE_ASN1_ITEM(OSSL_CMP_PKISTATUS)
@@ -439,11 +442,12 @@ int OSSL_CMP_CTX_build_cert_chain(OSSL_CMP_CTX *ctx, X509_STORE *own_trusted,
439442
int OSSL_CMP_CTX_set1_pkey(OSSL_CMP_CTX *ctx, EVP_PKEY *pkey);
440443
int OSSL_CMP_CTX_set1_referenceValue(OSSL_CMP_CTX *ctx,
441444
const unsigned char *ref, int len);
442-
int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx, const unsigned char *sec,
443-
const int len);
445+
int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx,
446+
const unsigned char *sec, int len);
444447
/* CMP message header and extra certificates: */
445448
int OSSL_CMP_CTX_set1_recipient(OSSL_CMP_CTX *ctx, const X509_NAME *name);
446449
int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
450+
int OSSL_CMP_CTX_reset_geninfo_ITAVs(OSSL_CMP_CTX *ctx);
447451
int OSSL_CMP_CTX_set1_extraCertsOut(OSSL_CMP_CTX *ctx,
448452
STACK_OF(X509) *extraCertsOut);
449453
/* certificate template: */
@@ -499,6 +503,7 @@ ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_recipNonce(const OSSL_CMP_PKIHEADER *hdr);
499503
OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
500504
int OSSL_CMP_MSG_get_bodytype(const OSSL_CMP_MSG *msg);
501505
int OSSL_CMP_MSG_update_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
506+
int OSSL_CMP_MSG_update_recipNonce(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
502507
OSSL_CRMF_MSG *OSSL_CMP_CTX_setup_CRM(OSSL_CMP_CTX *ctx, int for_KUR, int rid);
503508
OSSL_CMP_MSG *OSSL_CMP_MSG_read(const char *file, OSSL_LIB_CTX *libctx,
504509
const char *propq);

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/opensslv.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ extern "C" {
2929
*/
3030
# define OPENSSL_VERSION_MAJOR 3
3131
# define OPENSSL_VERSION_MINOR 0
32-
# define OPENSSL_VERSION_PATCH 7
32+
# define OPENSSL_VERSION_PATCH 13
3333

3434
/*
3535
* Additional version information
@@ -74,21 +74,21 @@ extern "C" {
7474
* longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
7575
* OPENSSL_VERSION_BUILD_METADATA_STR appended.
7676
*/
77-
# define OPENSSL_VERSION_STR "3.0.7"
78-
# define OPENSSL_FULL_VERSION_STR "3.0.7+quic"
77+
# define OPENSSL_VERSION_STR "3.0.13"
78+
# define OPENSSL_FULL_VERSION_STR "3.0.13+quic"
7979

8080
/*
8181
* SECTION 3: ADDITIONAL METADATA
8282
*
8383
* These strings are defined separately to allow them to be parsable.
8484
*/
85-
# define OPENSSL_RELEASE_DATE "1 Nov 2022"
85+
# define OPENSSL_RELEASE_DATE "30 Jan 2024"
8686

8787
/*
8888
* SECTION 4: BACKWARD COMPATIBILITY
8989
*/
9090

91-
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.7+quic 1 Nov 2022"
91+
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.13+quic 30 Jan 2024"
9292

9393
/* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
9494
# ifdef OPENSSL_VERSION_PRE_RELEASE

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/pkcs7.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* WARNING: do not edit!
33
* Generated by Makefile from include/openssl/pkcs7.h.in
44
*
5-
* Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved.
5+
* Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved.
66
*
77
* Licensed under the Apache License 2.0 (the "License"). You may not use
88
* this file except in compliance with the License. You can obtain a copy
@@ -56,8 +56,8 @@ typedef struct pkcs7_signer_info_st {
5656
PKCS7_ISSUER_AND_SERIAL *issuer_and_serial;
5757
X509_ALGOR *digest_alg;
5858
STACK_OF(X509_ATTRIBUTE) *auth_attr; /* [ 0 ] */
59-
X509_ALGOR *digest_enc_alg;
60-
ASN1_OCTET_STRING *enc_digest;
59+
X509_ALGOR *digest_enc_alg; /* confusing name, actually used for signing */
60+
ASN1_OCTET_STRING *enc_digest; /* confusing name, actually signature */
6161
STACK_OF(X509_ATTRIBUTE) *unauth_attr; /* [ 1 ] */
6262
/* The private key to sign with */
6363
EVP_PKEY *pkey;

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/asm_avx2/include/openssl/x509v3.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* WARNING: do not edit!
33
* Generated by Makefile from include/openssl/x509v3.h.in
44
*
5-
* Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved.
5+
* Copyright 1999-2023 The OpenSSL Project Authors. All Rights Reserved.
66
*
77
* Licensed under the Apache License 2.0 (the "License"). You may not use
88
* this file except in compliance with the License. You can obtain a copy
@@ -177,7 +177,7 @@ typedef struct GENERAL_NAME_st {
177177
OTHERNAME *otherName; /* otherName */
178178
ASN1_IA5STRING *rfc822Name;
179179
ASN1_IA5STRING *dNSName;
180-
ASN1_TYPE *x400Address;
180+
ASN1_STRING *x400Address;
181181
X509_NAME *directoryName;
182182
EDIPARTYNAME *ediPartyName;
183183
ASN1_IA5STRING *uniformResourceIdentifier;

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/asm_avx2/include/progs.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* WARNING: do not edit!
33
* Generated by apps/progs.pl
44
*
5-
* Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
5+
* Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved.
66
*
77
* Licensed under the Apache License 2.0 (the "License"). You may not use
88
* this file except in compliance with the License. You can obtain a copy

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/no-asm/crypto/buildinf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212

1313
#define PLATFORM "platform: BSD-x86"
14-
#define DATE "built on: Thu Nov 3 02:14:11 2022 UTC"
14+
#define DATE "built on: Wed Jan 31 12:57:55 2024 UTC"
1515

1616
/*
1717
* Generate compiler_flags as an array of individual characters. This is a

server/deps/nodejs/deps/openssl/config/archs/BSD-x86/no-asm/include/openssl/bio.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ int BIO_meth_set_puts(BIO_METHOD *biom,
867867
int (*puts) (BIO *, const char *));
868868
int (*BIO_meth_get_gets(const BIO_METHOD *biom)) (BIO *, char *, int);
869869
int BIO_meth_set_gets(BIO_METHOD *biom,
870-
int (*gets) (BIO *, char *, int));
870+
int (*ossl_gets) (BIO *, char *, int));
871871
long (*BIO_meth_get_ctrl(const BIO_METHOD *biom)) (BIO *, int, long, void *);
872872
int BIO_meth_set_ctrl(BIO_METHOD *biom,
873873
long (*ctrl) (BIO *, int, long, void *));

0 commit comments

Comments
 (0)