问题标签 [rfc]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
definition - MPEG-4 (RTP) 中的“VOP”是什么?
我正在阅读 MPEG-4 RTP Packet RFC ( http://www.rfc-editor.org/rfc/rfc3016.txt ) 并经常找到这个词
语音播报
我在网络或 RFC 中没有找到任何定义,有人能告诉我这个 VOP 是什么吗?
standards - 推荐任何“最好的第一个 IETF RFC 阅读”
如果您建议人们开始阅读 RFC,您会建议人们从哪个开始?
它应该比RFC 863(丢弃协议)更复杂,但比火箭科学更简单 :)
rfc - RFC 有什么许可证?
我想在我的网页上有 RFC,我想知道它是否被允许。特别是我对提供 RFC 所依据的许可证感兴趣。
如果这不是一个真正的问题,我很抱歉。
url - RFC 1738:URL:主机必须包含点吗?
根据RFC 1738:统一资源定位符 (URL):3.1。通用 Internet 方案语法,主机组件是否必须包含一个点,例如“example.com”?即,它可以仅由一个域标签组成吗?
networking - SOCKS5 绑定是持久的还是一次性的?
我一直在研究RFC 1928,但我并不清楚 BIND 操作的描述。据我了解,设置顺序描述如下:
- 客户端与 SOCKS5 服务器建立连接
- 客户端执行 CONNECT 请求
- 客户端与 SOCKS5 服务器建立新的 TCP 连接并请求 BIND
- 服务器立即回复 BIND 操作的结果
- 收到传入连接后,SOCKS5 服务器将通知发送给客户端
第 5 步对我来说不是很清楚。之后我是否必须重新请求 BIND 以允许更多传入连接?
据我了解,相同的 TCP 连接(在步骤 3 中建立)用于与接受的对等方通信。如果我需要继续接受同一地址:端口上的连接怎么办?毕竟有可能吗?
internet-explorer - 数据 URI 方案和 Internet Explorer 9 错误
我在使用带有 IE 版本 6-9 的 RFC 2397 数据 url 方案时遇到问题。下面的示例代码在使用当前版本的 Safari、FF、Opera 和 Chrome 时可以正常工作。
或者
如果上面的代码粘贴到几乎任何浏览器(不包括 IE)中,它将导航到 google.com,当尝试使用 IE 时,它会失败并出现以下错误。
网页无法显示
最可能的原因:
- 此网页上的某些内容或文件需要您未安装的程序。
你可以尝试什么:
在线搜索可用于查看此 Web 内容的程序。
重新输入地址。
检查生成的 IE 错误页面的页面源时,有一个引用文件关联和协议的链接。
协议类型:
描述:未知
Windows 无法识别此协议。
我意识到使用 data: 协议可能不是最直接的,或者在大多数情况下不是最好的选择,但我必须将它用于这个特定的项目。
我已经到处寻找解决方案并尝试了许多使用 IE 的示例,希望这是我的语法,但尚未找到解决方案。
url - 我们应该在 URL 的搜索部分编码斜杠吗?
rfc 1738对“搜索部分”中正斜杠的编码并不精确:
如果对应于八位字节的字符在方案中被保留,则必须对八位字节进行编码。
...
只有字母数字、特殊字符“$-_.+!*'()”和用于其保留目的的保留字符可以在 URL 中未编码使用。
...
在 'path' 和 'searchpart' 组件中,“/”、“;”、“?” 被保留。
您知道“/”在搜索部分网址中的“保留目的”是什么吗?
如果我的服务器处理未编码的斜杠,是否有任何真正的理由遵循规范并对正斜杠进行编码?
当我需要不断解码只是带有斜杠的字母数字的 url 参数时,它让我发疯。
下面是一个生活例子:
http://localhost/login?url=/a/path/to/protected/content
对比
http://localhost/login?url=%2Fa%2Fpath%2Fto%2Fprotected%2Fcontent "
.net - 什么是符合 RFC 的 URI
在浏览.NET framework 4.5 的功能时,我发现它支持符合 RFC 的 URI。拥有符合 RFC 的 URI 支持意味着什么?
c# - Does DeflateStream "skip" decompression if the data was not originally compressed?
I'm not familiar with the internals of DeflateStream, but I need to store files in a Vendor's DB system that uses DeflateStream on binary attachments. The first thing I noticed was that all of my files were 10-50% BIGGER after compression, but I attribute that to a less sophisticated compression algo on top of files that are already highly compressed (in this case they were all PDFs). My question however relates to the fact that when I just wrote the original file into the BLOB the Vendor's application had no problem opening it (it opened the attachments I compressed with deflate as well). Is there a header on the compressed data that tells DeflateStream that the data's not compressed and basically pass it on as-is? This is the specification; can anyone familiar with it point where this is defined - or am I off base and the vendor is doing some magic behind the scenes?
url - 能 。(句点)是 URL 路径部分的一部分吗?
以下网址有效吗?
http://www.example.com/module.php/lib/lib.php
根据https://www.rfc-editor.org/rfc/rfc1738部分,URL 的 hpath 元素不能包含“。” (时期)。在上述情况下,有一个“。” 在“模块”之后,根据 RFC1738 是不允许的。
我读错了 RFC 还是这个 RFC 被另一个 RFC 成功了?其他一些 RFC 允许使用 '.' 在 URL ( https://www.rfc-editor.org/rfc/rfc1808 ) 中。