PseudoTCPSocket by google



我正在实现我们的WebRTC通信,我在libnice(从libjingle复制)中遇到了伪tcp套接字。

伪TCP套接字做什么,为什么需要它?https://github.com/vigsterkr/libjingle/blob/master/talk/p2p/base/pseudotcp.cchttps://github.com/libnice/libnice/blob/master/agent/pseudotcp.c

pseudotcp在2005年被libjingle用于在udp之上提供类似tcp的可靠性文件传输。它不被WebRTC使用,它使用SCTP用于类似的目的。

最新更新