如何生成原始数据流?

发布于 2024-10-04 06:23:21 字数 190 浏览 1 评论 0原文

工具:

  • 操作系统: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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ペ泪落弦音 2024-10-11 06:23:21

由于您使用的是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文