1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

Merge pull request #1916 from RuiGao98/main

HTTP协议部分修改
This commit is contained in:
Guide 2023-02-10 13:55:26 +08:00 committed by GitHub
commit 7d3f3fa169
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,7 +57,7 @@ tag:
### HTTP 基于 TCP 还是 UDP
**HTTP 协议是基于 TCP 协议的**,所以发送 HTTP 请求之前首先要建立 TCP 连接也就是要经历 3 次握手
**HTTP3.0之前基于TCP HTTP3.0基于UDP**。HTTP3.0之前使用TCP协议所以需要3次握手HTTP3.0弃用TCP改用基于UDP的QUIC协议
### 使用 TCP 的协议有哪些?使用 UDP 的协议有哪些?