-
Notifications
You must be signed in to change notification settings - Fork 780
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2019-12-31:TCP/IP协议分为哪几层?TCP和HTTP分别属于哪一层? #223
Comments
可以说是五层,也可以说是四层,四层时是把数据链路层和物理层整合为网际接口层。 TCP位于传输层,http位于应用层 |
一般意义的话是分为四层,分别是:应用层、传输层、网络层、数据链路层。TCP、UDP位于传输层,Http位于应用层。如果分为五层的话,多了个物理层 |
四层 tcp是基于连接的 所以相对可靠, udp是直接发送 速度快但是不可靠 http1.1 引入了 keepalive机制 长连接 不必每次请求 都是三次握手四次挥手, 而是在超时时间内利用同一个 连接 https 是在 http的基础上加上ssl 安全套接字 加入了认证加密 增加了一定的安全性,但也不是完全安全.在app中需要将https证书改为严格模式,并且要提前将证书放在客户端,如果放在服务端下证书有可能被人抓走. https 如果不是严格模式 也是可以进行抓包的 |
TCP/IP协议分为 应用层 传输层 网络层 网络接口层 |
1 similar comment
TCP/IP协议分为 应用层 传输层 网络层 网络接口层 |
2019的最后一天。大家元旦快乐。
The text was updated successfully, but these errors were encountered: