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

Commits on Aug 13, 2024

  1. Add Multipath TCP (MPTCP) support

    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.
    Aperence committed Aug 13, 2024
    Configuration menu
    Copy the full SHA
    666b968 View commit details
    Browse the repository at this point in the history