UDP测试程序
我正在编写一套应用程序组件,它们最终将成为游戏引擎的一部分。我刚刚完成了线程系统的工作,并转而测试多线程网络功能,重点是 UDP。
如果我正在制作一个 TCP 服务器,我要测试的第一件事就是 HTTP:向 www.google.com 发送 HTTP 请求,将回复回显到 stdout,万岁。
我可以用来测试 UDP 互联网连接的常见 UDP 协议是什么?我脑子里想不出任何办法。域名系统?
I'm writing a suite of application components which will eventually be a part of a game engine. I just finished working on my threading system and am switching over to testing multithreaded network functionality with an emphasis on UDP.
If I was making a TCP server the first thing I would test is HTTP: Send a HTTP request to www.google.com, echo the reply to stdout, hooray.
What's a common UDP protocol that I can test UDP internet connectivity with? I can't think of any off the top of my head. DNS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
已建立的 TCP 和 UDP 端口和协议的维基百科列表
NTP(网络时间协议,端口 123)可能是要测试的东西。
Wikipedia list of established TCP and UDP ports and protocols
NTP (Network Time Protocol, port 123) might be something to test.
http://www.netfor2.com/dns.htm
这就是我正在寻找的为了。
UDP 上还有其他更简单的协议吗(重点关注请求数据包的结构)?
http://www.netfor2.com/dns.htm
This is kind of what I am looking for.
Are there any other protocols over UDP which are even more simple (focus on structure of request packet)?