zeromq / libzmq

ZeroMQ core engine in C++, implements ZMTP/3.1
https://www.zeromq.org
Mozilla Public License 2.0
9.44k stars 2.34k forks source link

Can support reliable UDP unicast ? #3354

Open zuowanbushiwo opened 5 years ago

zuowanbushiwo commented 5 years ago

This project has been reliable multicast transport using PGM,Is it possible to add a reliable udp unicast protocol,like this https://github.com/skywind3000/kcp ? thanks!

bluca commented 5 years ago

There is support for UDP multicast via norm (stable) and native UDP multicast via the draft radio/dish sockets, and unreliable UDP unicast via the draft dgram socket.

If you want to implement an additional transport you are very welcome to do a and send a pull request.