如何阻止 VB6 Winsock 发送流字节结束?
如何阻止 VB6 Winsock 发送流字节结束?它在每条消息后发送一个 0,这扰乱了我的代码。
How do I stop VB6 Winsock from sending an end of stream byte? It sends a 0 after each message, and it is messing with my code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您收到的唯一字节是发送的字节。 TCP/IP 不会添加额外的字节。此外,在 TCP/IP 中,“流的结尾”与消息的结尾不同。除非连接中断,否则流永远不会结束。
如果您可以发布一些代码,我们就可以深入了解问题。
The only bytes you receive are the ones that are sent. TCP/IP will not add extra bytes. Additionally, in TCP/IP, the "end of the stream" is not the same as the end of a message. The stream never ends unless the connection is broken.
If you can post some code, we can get to the bottom on the problem.