在实现我们的WebRTC通信时,我被libnice中的伪tcp套接字卡住了(这是从libjingle复制的)。
伪TCP套接字是做什么的,为什么需要它?
https://github.com/vigsterkr/libjingle/blob/master/talk/p2p/base/pseudotcp.cc https://github.com/libnice/libnice/blob/master/agent/pseudotcp.c
发布于 2021-09-30 12:26:45
早在2005年,libjingle就使用伪tcp在udp之上提供了类似tcp的可靠文件传输。WebRTC不会使用它,因为它将SCTP用于类似的目的。
https://stackoverflow.com/questions/69392112
复制相似问题