-
Notifications
You must be signed in to change notification settings - Fork 166
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
Path selection during multipath #1637
Comments
This is a correct description... but only if multipath is not negotiated. Yes, it would be nice to document path selection and multipath -- PRs are welcome. Waiting for that, your best bet is to look at the code of |
There are really two parts in scheduling. Given the option to "prepare a packet", picoquic has to find a path that is ready to send something, and then find what to send on that path. Find the path is done in
I am testing the new version of multipath proposed in the IETF, and doing that I found an issue when we have two paths, one on standby and one marked available. It takes some time to notice that the "available" path has disappeared. The server finds first, because data packets are lost. But the client does not notice immediately, keeps sending ACKs on the "available" path. The ACKs are lost, and that cause packets sent on either path to be dropped. Both paths are then considered equally bad, scheduling gets confused, and the connection breaks. Fixing that will probably require fixing the was scheduling is done. |
Hi, I am currently trying to understand the multipath behaviour of picoquic in order to modify it for my own project. I see some documentation in
picoquic_internal.h
about path behavior (linked here) with a couple of TODOs that seem old. Is this the current path behaviour or has that changed? Also, is there some documentation/guide to understanding the multipath behavior of picoquic? It would be great if someone could please point me to that! Thanks!The text was updated successfully, but these errors were encountered: