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.
在 Linux 中,使用 sendfile 可以直接将文件传输到套接字。
但是假设我们有两个服务器套接字,我们希望第一个的输出到第二个。
怎么做?代替
data=sock1.read() sock2.write(data)
我相信dup2会工作