如何生成原始数据流?
工具:
- 操作系统:Win XP,
- MSVC++
问题是我想生成一些“原始数据”流,我的意思是随机1和0的流,接下来我想发送这个生成的流通过 udp 套接字。
关于如何生成该流有什么想法吗?
我希望我的问题很清楚,并提前致谢
Tools:
- OS: Win XP,
- MSVC++
The problem is that I want to generate some "raw data" stream, by that I mean a stream of random 1s and 0s, next I want to send this genrated stream over udp sockets.
any ideas on how to generate that stream?
I hope I was clear in my question and thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您使用的是 UDP,因此您实际上不会获得“流”,因为 UDP 不是像 TCP 那样的面向流的协议。但是,您可以生成大量随机 UDP 数据包。只需使用 rand() 或其他方法生成随机整数,然后通过 UDP 发送它们。
Since you're using UDP, you're not really going to get a "stream", because UDP is not a stream-oriented protocol like TCP. You can generate lots of random UDP packets, however. Just generate random integers with rand() or whatever and send them over UDP.