Skip to content
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

Add Multipath TCP (MPTCP) support #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Aperence
Copy link

Multipath TCP or MPTCP is an extension to the standard TCP and is described in RFC 8684. It allows a device to make use of multiple interfaces at once to send and receive TCP packets over a single MPTCP connection. MPTCP can aggregate the bandwidth of multiple interfaces or prefer the one with the lowest latency. It also allows a fail-over if one path is down, and the traffic is seamlessly reinjected on other paths.

For more details about MPTCP, refer to the official website https://mptcp.dev

Typical uses cases for this library would be to leverage the fail-over capacity of MPTCP to enhance the user experience on mobile devices (android/iOS).

Changes to this repository consist of replacing the protocol field value, previously IPPROTO_TCP, by IPPROTO_MPTCP (if this symbol is available) when creating sockets.

Multipath TCP or MPTCP is an extension to the standard TCP and is described in RFC 8684.
It allows a device to make use of multiple interfaces at once to send and receive TCP packets over a single MPTCP connection.
MPTCP can aggregate the bandwidth of multiple interfaces or prefer the one with the lowest latency.
It also allows a fail-over if one path is down, and the traffic is seamlessly reinjected on other paths.

For more details about MPTCP, refer to the official website https://mptcp.dev

Typical uses cases for this library would be to leverage the fail-over capacity of MPTCP to
enhance the user experience on mobile devices (android/iOS).

Changes to this repository consist of replacing the protocol field value, previously IPPROTO_TCP,
by IPPROTO_MPTCP (if this symbol is available) when creating sockets.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant