Closed
Conversation
Collaborator
Collaborator
Member
|
The actions failures are new warnings (treated as errors): |
Member
Author
|
CI is good on this! |
6 tasks
addaleax
approved these changes
Jul 29, 2020
Member
Author
|
@addaleax, please take another look when you have the opportunity to do so. I've added a new |
b8b6ce0 to
3f902ed
Compare
7 tasks
2342fb7 to
b95bf9d
Compare
This was referenced Jul 30, 2020
lundibundi
reviewed
Jul 30, 2020
lundibundi
reviewed
Jul 30, 2020
This was referenced Jul 31, 2020
Refactor the `'clientHello'` event into a `clientHelloHandler` configuration option and async function. Remove the addContext API as it's not needed.
Alternative to `CallbackScope` that handles destroying the `QuicSession` in the try_catch cleanup.
3b7a7ee to
ff8677f
Compare
Member
Author
Member
Author
|
Regular CI and QUIC CI are good to go on this |
This was referenced Aug 1, 2020
gengjiawen
approved these changes
Aug 3, 2020
gengjiawen
pushed a commit
that referenced
this pull request
Aug 3, 2020
Refactor the `'clientHello'` event into a `clientHelloHandler` configuration option and async function. Remove the addContext API as it's not needed. PR-URL: #34541 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
gengjiawen
pushed a commit
that referenced
this pull request
Aug 3, 2020
Alternative to `CallbackScope` that handles destroying the `QuicSession` in the try_catch cleanup. PR-URL: #34541 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
gengjiawen
pushed a commit
that referenced
this pull request
Aug 3, 2020
PR-URL: #34541 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Member
|
Landed in e5dacc2...6e65f26 |
This was referenced Aug 4, 2020
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
First commit here is from #34533 which needs to land first.
Second commit here is the important one in this PR. This refactors the
'clientHello'event into an async function passed as anquicsocket.listen()option. This function is only ever called once at a very specific point in theQuicServerSessionlifecycle, using it as an event is unnecessary. The commit changes the way it works. If appropriate to do so, user code may return a newSecureContextfrom the function (previously that was done in the OCSP function, which really didn't make sense).Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passes