Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@chromium.org>2014-08-12 04:18:25 +0400
committerAdam Langley <agl@chromium.org>2014-08-13 01:11:35 +0400
commit8eaaa86da3691e7729adc7c19004344633ffc9d1 (patch)
treee5b25771e368c0ff1db5d25b1bb3ac9d72a4ea62 /ssl/ssl_error.c
parent98e882ead190c002cff0ef0d964854346bb82389 (diff)
Add mode to disallow session creation.
Android needs this and it was patched into their OpenSSL in https://android.googlesource.com/platform/external/openssl.git/+/master/patches/0003-jsse.patch It appears that this is needed because javax.net.ssl.SSLEngine has it as part of its interface and thus it's part of the Android API. No idea why anything would ever want to disable that though. Change-Id: I9c6279a961637f44936889edbe269b9d5c19746d
Diffstat (limited to 'ssl/ssl_error.c')
-rw-r--r--ssl/ssl_error.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ssl/ssl_error.c b/ssl/ssl_error.c
index 7a7a3add..12c1ffd7 100644
--- a/ssl/ssl_error.c
+++ b/ssl/ssl_error.c
@@ -430,6 +430,7 @@ const ERR_STRING_DATA SSL_error_string_data[] = {
{ERR_PACK(ERR_LIB_SSL, 0, SSL_R_SCSV_RECEIVED_WHEN_RENEGOTIATING), "SCSV_RECEIVED_WHEN_RENEGOTIATING"},
{ERR_PACK(ERR_LIB_SSL, 0, SSL_R_SERVERHELLO_TLSEXT), "SERVERHELLO_TLSEXT"},
{ERR_PACK(ERR_LIB_SSL, 0, SSL_R_SESSION_ID_CONTEXT_UNINITIALIZED), "SESSION_ID_CONTEXT_UNINITIALIZED"},
+ {ERR_PACK(ERR_LIB_SSL, 0, SSL_R_SESSION_MAY_NOT_BE_CREATED), "SESSION_MAY_NOT_BE_CREATED"},
{ERR_PACK(ERR_LIB_SSL, 0, SSL_R_SHORT_READ), "SHORT_READ"},
{ERR_PACK(ERR_LIB_SSL, 0, SSL_R_SIGNATURE_ALGORITHMS_ERROR), "SIGNATURE_ALGORITHMS_ERROR"},
{ERR_PACK(ERR_LIB_SSL, 0, SSL_R_SIGNATURE_FOR_NON_SIGNING_CERTIFICATE), "SIGNATURE_FOR_NON_SIGNING_CERTIFICATE"},