-
Notifications
You must be signed in to change notification settings - Fork 546
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
Support Client Migration (Client Side) #4218
Open
masa-koz
wants to merge
26
commits into
microsoft:main
Choose a base branch
from
masa-koz:add_active_migration
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
3ca34bb
Add active migration support.
masa-koz cb3545e
fix nits
masa-koz ac71d73
move the codes into the separate functions.
masa-koz 5ca2a72
Merge branch 'microsoft:main' into add_active_migration
masa-koz a339913
Change the ConnID and reset Congestion Control.
masa-koz 2bed382
Merge branch 'main' into add_active_migration
masa-koz 257f270
Merge branch 'add_active_migration' of https://github.com/masa-koz/ms…
masa-koz c6f7e3d
Defer sending a path challange if there is no unused ConnID
masa-koz ac1f616
Release bindings and assert non-null for retired paths in connection …
masa-koz 2b3c6fd
Accept adding local address before connection start
masa-koz 9e287a7
Add support for multiple local addresses in connection tests
masa-koz 5da50d7
Replace all the existing source connection IDs if we find the collisi…
masa-koz d1d69a3
run ./scripts/update-sidecar.ps1
masa-koz 12c1579
Fix missing newline at end of file in quic_gtest.h
masa-koz f2c9629
Define local address management parameters only when preview features…
masa-koz b85b832
Improve local address handling in path tests with retry logic for add…
masa-koz e5e4c7b
Merge branch 'main' into add_active_migration
masa-koz e0691f3
Refactoring
masa-koz 1cd0b78
Enhance UdpPortChangeOnly condition for server connections in QuicPat…
masa-koz 64a35a7
Refactor migration test to use QUIC_MIGRATION_TYPE and improve path m…
masa-koz aaf479d
Merge branch 'main' into add_active_migration
masa-koz 01f7e15
Validate buffer and address in local address add/remove functions
masa-koz 6d53d03
Refactor QUIC CID source functions to remove unnecessary connection p…
masa-koz dda0b00
Add partition index to UDP configuration for new path binding
masa-koz 5730945
Update PathProbeHelper instantiation to use std::nothrow and fix QUIC…
masa-koz 8f11fe7
Merge branch 'add_active_migration' of https://github.com/masa-koz/ms…
masa-koz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
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.
Personally, I'd have combined this with the other invalid parameter check (on the same line) as the one above. Looks a bit cleaner IMO.
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.
Now, all the checks are done on the same line.