c++ – Does boost::asio support MPTCP?
According to www.multipath-tcp.org/ MPTCP is included in Linux Kernel >= 5.6 and I could successfully verify that it is available on my machine.
I would like to extend my existing c++ application to use the MPTCP. My current implementation uses
boost::asio
and I could not find any appropriate socket options to enable MPTCP. Google search neither provides results with MPTCP in boost::asio
context, nor any hints on whether it is actually supported.
(My BOOST_LIB_VERSION
is “1_74”)
Read more here: Source link