Skip to content

Commit a44f9f8

Browse files
authoredAug 4, 2022
fix: typo
1 parent 2a0e702 commit a44f9f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎5-network/11-websocket/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# WebSocket
22

3-
[RFC 6455](https://datatracker.ietf.org/doc/html/rfc6455) 规范中描述的 `WebSocket` 协议,提供了一种在浏览器和服务器之间建立持久连接来交换数据的方法。数据可以作为“数据包”在两个方向上传递,而无需中段连接也无需额外的 HTTP 请求。
3+
[RFC 6455](https://datatracker.ietf.org/doc/html/rfc6455) 规范中描述的 `WebSocket` 协议,提供了一种在浏览器和服务器之间建立持久连接来交换数据的方法。数据可以作为“数据包”在两个方向上传递,而无需中断连接也无需额外的 HTTP 请求。
44

55
对于需要连续数据交换的服务,例如网络游戏,实时交易系统等,WebSocket 尤其有用。
66

0 commit comments

Comments
 (0)
Please sign in to comment.