View | Details | Raw Unified | Return to bug 228344 | Differences between
and this patch

Collapse All | Expand All

(-)src/network/ssl/qsslsocket_openssl_symbols_p.h (-1 / +4 lines)
Lines 232-238 BIO *q_BIO_new_mem_buf(void *a, int b); Link Here
232
int q_BIO_read(BIO *a, void *b, int c);
232
int q_BIO_read(BIO *a, void *b, int c);
233
Q_AUTOTEST_EXPORT int q_BIO_write(BIO *a, const void *b, int c);
233
Q_AUTOTEST_EXPORT int q_BIO_write(BIO *a, const void *b, int c);
234
int q_BN_num_bits(const BIGNUM *a);
234
int q_BN_num_bits(const BIGNUM *a);
235
#if OPENSSL_VERSION_NUMBER >= 0x10100000L
235
#if !defined(BN_is_word) || defined(LIBRESSL_VERSION_NUMBER)
236
int q_BN_is_word(BIGNUM *a, BN_ULONG w);
236
int q_BN_is_word(BIGNUM *a, BN_ULONG w);
237
#else
237
#else
238
// BN_is_word is implemented purely as a
238
// BN_is_word is implemented purely as a
Lines 454-459 void q_EC_KEY_free(EC_KEY *ecdh); Link Here
454
size_t q_EC_get_builtin_curves(EC_builtin_curve *r, size_t nitems);
454
size_t q_EC_get_builtin_curves(EC_builtin_curve *r, size_t nitems);
455
#if OPENSSL_VERSION_NUMBER >= 0x10002000L
455
#if OPENSSL_VERSION_NUMBER >= 0x10002000L
456
int q_EC_curve_nist2nid(const char *name);
456
int q_EC_curve_nist2nid(const char *name);
457
#if defined(LIBRESSL_VERSION_NUMBER)
458
int q_SSL_CTX_set1_groups(SSL_CTX *a, int *b, int c);
459
#endif // defined(LIBRESSL_VERSION_NUMBER)
457
#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L
460
#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L
458
#endif // OPENSSL_NO_EC
461
#endif // OPENSSL_NO_EC
459
#if OPENSSL_VERSION_NUMBER >= 0x10002000L
462
#if OPENSSL_VERSION_NUMBER >= 0x10002000L

Return to bug 228344