TCP消息端最佳实践
结束 TCP 消息的最佳实践是什么?我现在有了自己的自定义字符串,但我偏执地认为,如果运气不好,可能会在线路上传输包含最终消息 charcater(s)/string 的内容。
SMTP 服务器接受回车键,但是如果文本中“输入”了一段文本并通过网络传输,这不会让人感到惊慌吗?
我想得到一些关于这方面的想法。
谢谢
whats the best practice to end a tcp message? I now have my own custom string of characters, but I am paranoid that in a case of blind luck, its possible to transmit something on the wire that can contain your end message chracater(s)/string .
SMTP servers take the enter key, but won't that freak out if a peace of text has "enters" in it and is transmitted on the wire?
I would like to get some ideas on this.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用自定义字符串作为结束指示符,则必须使用一些字符串转义技术确保该结束指示符不会出现在消息正文中。
例如,如果使用“\r\n”作为结束指示符,则必须将消息正文中的“\r\n”转换为其他形式。
If you are using a custom string as the end indicator, you must ensure that this end indicator won't appear in the message body, using some string escape techniques.
For example, if you are using "\r\n" as the end indicator, you must turn the "\r\n" in the message body to another form.
可以更好地利用消息的长度并将其传递给开头吗?
有关文本协议的示例,请参见 此处。你的问题解决了一部分
Can better use the length of message and pass it the beginning?
For example of text protocol seee here. Your problem solve it part