Broadcast like UDP with the reliability of TCP

后端 未结 16 1586
陌清茗
陌清茗 2021-01-30 02:30

I\'m working on a .net solution that is run completely inside a single network. When users make a change to the system, I want to launch an announcement and have everyone else h

16条回答
  •  天涯浪人
    2021-01-30 03:27

    @epatel - I second the SCTP suggestion (I voted up, but can't comment yet so additional stuff here).

    SCTP has many great features and flexibility. You can sub-divide your connection into multiple streams, and choose the reliablity of each and whether it is ordered or not. Alternatively, with the Partially Reliability extension, you can control reliability on a per message basis.

提交回复
热议问题