From d3be3174bbb996e59796ff84e9d066881ddb0e70 Mon Sep 17 00:00:00 2001 From: wangyu- Date: Thu, 22 Feb 2018 01:51:38 +0800 Subject: [PATCH] =?UTF-8?q?Updated=20faketcp=E6=96=B9=E6=A1=88=E5=92=8Cudp?= =?UTF-8?q?=20over=20tcp=E3=80=81udp=20in=20tcp=E7=9A=84=E5=8C=BA=E5=88=AB?= =?UTF-8?q?=20(markdown)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- faketcp方案和udp-over-tcp、udp-in-tcp的区别.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/faketcp方案和udp-over-tcp、udp-in-tcp的区别.md b/faketcp方案和udp-over-tcp、udp-in-tcp的区别.md index eb9b98b..6865c07 100644 --- a/faketcp方案和udp-over-tcp、udp-in-tcp的区别.md +++ b/faketcp方案和udp-over-tcp、udp-in-tcp的区别.md @@ -1,4 +1,4 @@ -# udp over tcp、udp in tcp方案 +##### udp over tcp、udp in tcp方案 udp over tcp、udp in tcp说的是一回事儿,是把udp协议封装到tcp协议里发送。 常见的有$$R的tcp in udp模式,还有tcp模式的openvpn。 这种方式是把udp数据包打包封装后用tcp协议来发送。 本质上是发送时把udp转换成tcp,然后在接收方恢复出来。 @@ -10,6 +10,6 @@ udp in tcp方案的特点: 2. 如果带宽充足,udp in tcp方案也会工作得很好;如果udp数据发送的数据一但超过了tcp的带宽,连接就会卡住一段时间,有时候会造成超过10秒的时间无法发送数据。(可靠传输、拥塞控制造成的副作用) -# faketcp方案 +##### faketcp方案 用raw socket给udp协议直接加上伪造的tcp包头,把udp伪装成tcp;本质上还是udp,不需要经过系统的tcp协议栈,所以不会引入上述的问题。 \ No newline at end of file