Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[tls] Add a custom listener handshaker for TLS. #12075
[tls] Add a custom listener handshaker for TLS. #12075
Changes from 1 commit
647e23c
a497d44
df9dfb2
22f2003
a403972
59d5905
2168d8b
44b31b8
78656cc
2240f09
e6de2a1
bff00b6
1c2a650
aaae5bf
1266425
d9db724
48a840e
32c5095
3b94f43
08e4183
0dc6bde
480e433
61b7d5c
508ea7a
2e21ee8
51ace82
5dbb557
4e3af18
78e3f2f
e4b22fd
6725f9c
fad305b
36c4d83
7c3020d
cb39b1a
ed5f209
2c7d3c8
2d5ec2f
f32acbc
18dc2c6
c7c40b5
f711e26
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This for test doHandshake implementation looks too real. it seems like a copy of HandshakeImpl::doHandshake.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It basically is. I specifically wanted to demonstrate special-case error handling under
switch(SSL_get_error(...))
. Should I add more comments to call out that only theSSL_ERROR_WANT_X509_LOOKUP
block is different?