-
Notifications
You must be signed in to change notification settings - Fork 774
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
Expose C api to handle PathEvent #1660
Conversation
6f8b6aa
to
8a3d847
Compare
3423f50
to
51f57c5
Compare
So this seems to work... just tested it with my integration code |
Motivation: How we used QuicConnectEvent to notify about connection migration was not correct at all. Let's remove it for now as we will introduce something better once cloudflare/quiche#1660 was merged into quiche. Modifications: Remove QuicConnectEvent Result: Get rid of incorrect implementation to prepare for adding a proper one
Motivation: How we used QuicConnectEvent to notify about connection migration was not correct at all. Let's remove it for now as we will introduce something better once cloudflare/quiche#1660 was merged into quiche. Modifications: Remove QuicConnectEvent Result: Get rid of incorrect implementation to prepare for adding a proper one
e8676b4
to
b99516c
Compare
@LPardue all addressed |
There's a lot of passing pairs of
wondering if maybe we should define a struct... |
I was thinking about it but decided against it as other functions that take those pairs dont use a struct as well. That said I am fine with adding a struct... Maybe lets wait for @ghedo to chime in |
3980108
to
7b54fa1
Compare
rebased |
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.
Added a nit, I'll apply it myself when merging.
Motivation: There was no C api exposed to allow handling PathEvent. Modifications: Expose c functions to handle PathEvent Result: Be able to handle and consume PathEvent
ce65fcb
to
bcfec5a
Compare
Motivation:
There was no C api exposed to allow handling PathEvent.
Modifications:
Expose c functions to handle PathEvent
Result:
Be able to handle and consume PathEvent