pop3多行问题

发布于 2024-08-30 07:32:38 字数 111 浏览 3 评论 0原文

我正在为 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 技术交流群。

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

发布评论

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

评论(1

夏有森光若流苏 2024-09-06 07:32:38

可以跨越多行的响应(例如电子邮件的内容)在 中进行标识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.

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