pop3多行问题
我正在为 pop3 创建一个客户端,但不知何故我不知道如何处理多行响应。无论是单行还是多行,服务器的响应都没有区别,它总是以 CRLF 结尾(考虑到通常情况),那么我如何知道是否应该再次调用 recv() ?
i'm making a client for pop3 and somehow i can't figure out how to handle multiline responses. There is no difference in the response from server whether it is single or multiline, it always ends with CRLF (considering the usual case) so how do I know if I should call recv() once more?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以跨越多行的响应(例如电子邮件的内容)在 中进行标识POP3 RFC。
多行响应的最后一行仅包含一个点“.”。
因此,请查找
"\r\n.\r\n"
最后一行是终止标记。它不是实际消息的一部分。
Responses that can span more than one line (such as the contents of an email) are identified as such in the POP3 RFC.
The last line of a multi-line response just contains a dot "."
So look for
"\r\n.\r\n"
That last line is a termination mark. It's not part of the actual message.