Changes between Version 3 and Version 4 of Ticket #2, comment 7


Ignore:
Timestamp:
08/29/17 12:09:19 (7 years ago)
Author:
wangyucn
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2, comment 7

    v3 v4  
    33@cron2 @L29Ah
    44
    5 I have a solution which can kind of make tcp-over-tcp fast.I implemented a FakeTCP protocol at user space by using raw socket.It simulates 3-way handshake and seq/ack of standard TCP,but it allows out-of-order delivery and there is no re-transmit/congestion control.Firewalls and routers will just regard it as normal TCP.
     5I have a solution which can kind of make tcp-over-tcp fast.I implemented a custom TCP protocol(we can call it FakeTCP)at user space by using raw socket.It simulates 3-way handshake and seq/ack of standard TCP,but it allows out-of-order delivery and there is no re-transmit/congestion control.Firewalls and routers will just regard it as normal TCP.
    66
    77It can pass through NAT(as UDP or normal TCP does),works very stably.By using this FakeTCP protocol,the performance can be as good as UDP.Its useful when UDP is blocked or being throttled.