Websocket 中的 sub-protocol 和 extensions 的关系

当时看 RFC6455 的时候,对 Sub-protocol 和 Extensions 感到很困惑,子协议是客户端提交几个子协议的列表(带优先序),交给服务器判断要使用那一个协议,然后再由服务器返回一个选中的子协议给客户端。而扩展则是客户端提交一个扩展列表(带顺序和参数)给服务器,然后由服务器决定要使用那些扩展,然后返回一个扩展列表给客户端(带顺序和参数)。

在文档中对这两个部分的描述并不是很清晰,并没有明确的举例说明这两个部分该如何使用,在搜索相关的资料的时候,在mozila的开发者网站上发现了这篇文章:

Writing WebSocket servers - Web APIs | MDN

其中提到:

Think of an extension as compressing a file before emailing it to someone. Whatever you do, you're sending the same data in different forms. The recipient will eventually be able to get the same data as your local copy, but it is sent differently. That's what an extension does. WebSockets defines a protocol and a simple way to send data, but an extension such as compression could allow sending the same data but in a shorter format.

Think of a subprotocol as a custom XML schema or doctype declaration. You're still using XML and its syntax, but you're additionally restricted by a structure you agreed on. WebSocket subprotocols are just like that. They do not introduce anything fancy, they just establish structure. Like a doctype or schema, both parties must agree on the subprotocol; unlike a doctype or schema, the subprotocol is implemented on the server and cannot be externally referred to by the client.

里面用压缩软件来举例说明了扩展的作用,同时用XML语法来类比子协议。同时强调了,子协议是服务器实现的,客户端不能从外部引用。如果从这个角度来看,子协议应该就是对 payload 的内部处理方式(代码级别),而扩展则是对 payload 的外部处理方式(程序级别)。

而处理的顺序则已经标明:

payload -> extensions (in order) -> sub-protocol -> webscoket

以上。

相关推荐
liulilittle8 分钟前
关于拥塞控制的几点思考
网络·c++·tcp/ip·计算机网络·信息与通信·tcp·通信
AOwhisky30 分钟前
MySQL 学习笔记(第四期):SQL 语言之多表查询
linux·运维·网络·数据库·笔记·学习·mysql
Phantom Void41 分钟前
服务器处理客户端请求的设计方法
linux·运维·网络
王码码203543 分钟前
办了500M宽带看视频还是卡?我用NAS搭了个测速服务器,宽带有没有缩水一测便知
网络·接口·nas
ylscode1 小时前
Anthropic Claude Oceanus意外泄露:Mythos系列AI红队测试遭遇API代理滥用危机
网络·人工智能·安全·web安全·安全威胁分析
myenjoy_13 小时前
MQTT 与 Sparkplug B——从车间到云端的最后一公里
网络·python
8125035333 小时前
第13篇:TCP vs UDP——可靠与速度的博弈
网络协议·tcp/ip·udp
2401_873479404 小时前
企业安全运营中,如何用IP离线库提前发现失陷主机?三步实现风险画像
网络·数据库·python·tcp/ip·ip
喵个咪5 小时前
实时游戏网络协议深度对比:KCP vs WebRTC vs WebSocket
后端·websocket·webrtc
代码中介商5 小时前
HTTP 完全指南(最终篇):CORS 跨域资源共享深度详解
网络·网络协议·http