Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Python 中,我一直在使用侦听消息的服务器套接字和将数据发送到服务器的客户端套接字连接。
我认为使用套接字模块的服务器/客户端 python 程序跨越第 5 层(会话)、6(演示)和 7(应用程序)是否正确?我想到了使用套接字作为呈现数据、管理会话和使用传输协议(例如 tcp 或 udp)创建套接字的 python 代码。
我的理解/想法正确吗?
谢谢你。
对,那是正确的。
请注意,OSI 模型在实践中并不常用。更典型的是,您会看到 Internet 参考模型,它将 OSI 第 5、6 和 7 层压缩到称为应用层的单个层中。