拥有 "RFC-compliant" 代码是什么意思?

What does it mean to have "RFC-compliant" code?

我在 1:00 的 this talk 中听到了 RFC 兼容代码这个词。具体是什么意思?

符合 RFC 的代码是遵循 TCP/IP 堆栈中协议的正式要求的代码,如许多 RFC ("request for comments") documents published by the Internet Engineering Task Force, aka the IETF. There are many different types of RFC-Compliant requirements, such as HTTP RFC 1945, RFC 2822, RFC 2045, RFC 2046, RFC 2047, and RFC 2231. A complete list of these RFCs can be found here.

既然您请求了一个示例,那么让我们看一下 this Github repository file,它为客户端和服务器构建了一个 OAuth 实现。具体来说,generate_nonce 函数。 (为避免版权/许可问题,该功能不会作为此答案的一部分发布。请单击上面的 link 查看文件)。

查看 generate_nonce 的文档字符串,函数“生成一个随机的 ASCII 编码的无符号整数,以十进制表示”。然后它显示它遵循的特定 RFC 指南:RFC 5849 - Section 3。所以这个函数是一段符合 RFC 的代码的示例,特别是符合 RFC 5849 的代码。