projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01a4e87
)
Handle SSL_ERROR_WANT_X509_LOOKUP
author
Dr. Stephen Henson
<steve@openssl.org>
Sun, 13 Sep 2015 18:04:58 +0000
(19:04 +0100)
committer
Dr. Stephen Henson
<steve@openssl.org>
Sun, 20 Sep 2015 13:19:49 +0000
(14:19 +0100)
Reviewed-by: Rich Salz <rsalz@openssl.org>
ssl/bio_ssl.c
patch
|
blob
|
history
diff --git
a/ssl/bio_ssl.c
b/ssl/bio_ssl.c
index 639b10556a30a257a961c927091dbbf12b8d2829..a8260c9c43f3a010da07f1488aadd623d798a4a7 100644
(file)
--- a/
ssl/bio_ssl.c
+++ b/
ssl/bio_ssl.c
@@
-407,6
+407,10
@@
static long ssl_ctrl(BIO *b, int cmd, long num, void *ptr)
BIO_set_flags(b, BIO_FLAGS_IO_SPECIAL | BIO_FLAGS_SHOULD_RETRY);
b->retry_reason = b->next_bio->retry_reason;
break;
+ case SSL_ERROR_WANT_X509_LOOKUP:
+ BIO_set_retry_special(b);
+ b->retry_reason = BIO_RR_SSL_X509_LOOKUP;
+ break;
default:
break;
}