Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

是否有计划支持udp server? #576

Closed
ChungTak opened this issue Sep 24, 2021 · 5 comments
Closed

是否有计划支持udp server? #576

ChungTak opened this issue Sep 24, 2021 · 5 comments

Comments

@ChungTak
Copy link

我想试试workflow是否合适做流媒体服务,需要接收udp消息。请问udp server有没有计划添加的呢?

@Barenboim
Copy link
Contributor

请问你需要做可靠UDP吗?可靠UDP和普通UDP,我们server的实现方式可能会不一样。

@ChungTak
Copy link
Author

不需要可靠~~ 允许丢包. 用来做sip协议~udp发送rtp包

@Barenboim
Copy link
Contributor

今天想了一天,感觉UDP server沿用我们现在这个模式不太好做。因为我们目前的模式下TCP server如果在process过程中有收到数据,我们会认为这是垃圾数据直接断开连接(我们彻底抛弃http/1.1的pipeline功能)。但对于UDP这是有问题的,UDP包可能会重复收到不应该认为是错误数据。所以整个模式就不太一样。
UDP client我们是支持比较好的,目前DNS解析默认就是用UDP协议发送。如果你想实现UDP server,可以用我们的poller模块来实现异步读取。而UDP没有异步写入的需求,写入数据直接对fd进行操作就可以了。poller模块的接口说明可以看看这个:#351

@wangwenqiangGitHub
Copy link

您好:很高兴能有这么优秀的框架可以学习, 目前使用的话,还有一些顾虑,比如我是嵌入式设备开发,很多网络通讯都是udp去接收传感器数据,通过传感器的消息解析,分发给不同的场景, 看到咱们已经支持信号-槽这种观者者模式,想问一下,有没有什么方法可以监听我自己设置的udp fd,通过回调的方式来处理 传感器到来的数据,然后自己就可以分发给不同的模块处理了。

@Barenboim
Copy link
Contributor

#1499
已经实现了。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants