Is it possible to guarantee delivery of messages using UDP on Node.js?

前端 未结 4 1481
我寻月下人不归
我寻月下人不归 2021-01-07 00:02

How is it possible to guarantee delivery of messages using UDP on Node.js? For example, I could just resend the packet if it failed - but is there a way to identify when it

4条回答
  •  青春惊慌失措
    2021-01-07 00:09

    UDP is a protocol with no guaranteed delivery. If you want to guarantee, you should implement some protocol on top of UDP.

提交回复
热议问题