qdeconinck / mp-quic

Please read https://multipath-quic.org/2017/12/09/artifacts-available.html to figure out how to setup the code.
MIT License
176 stars 71 forks source link

Does MPQUIC not perform full mesh with the client host? #14

Closed thomaswpp closed 4 years ago

thomaswpp commented 4 years ago

Does MPQUIC not perform full mesh with the client host? For example, there are two hosts (client and server), each host has two interfaces, in MPTCP there are 4 subflows creating the full mesh, however, in MPQUIC I only see 2 subflows created in the pathmanager. How does MPQUIC work, does it not do full mesh?

qdeconinck commented 4 years ago

In our previous experiments, we only considered a server with a single network interface and IP address. It might be possible that the path manager "forgets" to consider the ADD_ADDRESS sent by the server to create new paths on it.

thomaswpp commented 4 years ago

Got it. Thanks for the answer.