forked from lkl/linux
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mptcp + TFO: Only send ADD_ADDR after receiving the third ACK
When TFO is being used, we create the full-fledged MPTCP-socket right at the reception of the SYN. At this point, we also call mptcp_update_metasocket(), which ends up calling the path-manager to check for addresses,... This also means that the server will send ADD_ADDR-options. These ADD_ADDR-options will actually be sent before the SYN/ACK, in full_mesh_new_session(). These ACKs with ADD_ADDR-option will actually be discarded by the client, because the client is still waiting for a SYN/ACK. This patch changes this so that ADD_ADDR will only be sent after the reception of the third ACK. Fixes: 8d66361 (mptcp: fastopen server support) Signed-off-by: Christoph Paasch <[email protected]> Signed-off-by: Matthieu Baerts <[email protected]> (cherry picked from commit c642642) Signed-off-by: Matthieu Baerts <[email protected]>
- Loading branch information
Showing
3 changed files
with
15 additions
and
14 deletions.
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