summaryrefslogtreecommitdiff
path: root/tests/mptcp-fclose.out
Commit message (Collapse)AuthorAgeFilesLines
* MPTCP: Add missing MP_CAPABLE FlagsRui2021-08-181-3/+3
| | | | Parse previous ignored flags from MP_CAPABLE option
* MPTCP: Print 'Length' inside mptcp optionsMichal Ruprich2021-04-091-9/+9
| | | | | Current mptcp parser prints 'mptcp <Subtype>...' but RFC 8684 in Section 3. states that the format should be 'mptcp <Length> <Subtype>...'
* MPTCP: parse MP_CAPABLE v1 optionsDavide Caratti2020-02-281-3/+3
| | | | | | | | A new version of MPTCP protocol (RFC8684) has been published, with some changes to the MP_CAPABLE options handling. Let tcpdump print the protocol version, and adjust parsing of MP_CAPABLE options according to RFC8684. Signed-off-by: Davide Caratti <dcaratti@redhat.com>
* Use UTC/GMT time when building/checking tests filesFrancois-Xavier Le Bail2018-08-091-11/+11
| | | | | | | | | | | | | This will avoid some differences when checking in different time zones. We now run the tests without the '-t' option. This will allow to get problems/changes in time printing functions. Update the output of the tests accordingly. Moreover: Add the '-#' option to better identify a packet when there is a difference in output.
* Fix MPTCP supportGregory Detal2013-04-191-9/+9
| | | | | | | | | Added: * option length check * option type and TCP flags check * more information printed Signed-off-by: Gregory Detal <gregory.detal@uclouvain.be>
* Multipath TCP (RFC 6824) supportGregory Detal2013-04-141-0/+11
This commit adds the support of Multipath TCP (MPTCP). MPTCP is a new extension to TCP standardized at the IETF. MPTCP allows to use several IP addresses at the same time by distributing data across several subflows (TCP connections) while still presenting the standard TCP socket API to the application. Its benefits are better resource utilization, better throughput and smoother reaction to failures.