Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Whether there is a UDT backend for boost::asio?

Please, tell to me are whether exist UDT protocol backend for boost::asio?

UDT is a reliable UDP based application level data transport protocol for distributed data intensive applications over wide area high-speed networks. ( http://udt.sourceforge.net/index.html )

like image 619
phprus Avatar asked Jan 26 '11 14:01

phprus


1 Answers

TCP, UDP, and ICMP are supported by Boost.Asio. Other protocols can be implemented by extending the Protocol type requirements. There are several threads on the asio-users mailing list discussing adding support for SCTP, you may be able to use that as an example.

like image 169
Sam Miller Avatar answered Sep 28 '22 22:09

Sam Miller