MinimaLT[1] is another interesting protocol with similar goals. From the abstract:<p>"Minimal Latency Tunneling (MinimaLT) is a new network protocol that provides ubiquitous encryption for maximal confidentiality, including protecting packet headers. MinimaLT provides server and user authentication, extensive Denial-of-Service protections, and IP mobility while approaching perfect forward secrecy."<p>[1]: <a href="http://cr.yp.to/tcpip.html" rel="nofollow">http://cr.yp.to/tcpip.html</a>
Wow - this is exciting. It sounds similar to the SSH protocol but with forward error correction and fine-tuned for quick handshakes. Is the the beginning of the end for TCP and SSL? I hope so!
Awesome. Just awesome.<p>I've also been thinking about another possible optimization:<p>Two things have a big impact on connection start-up performance currently: handshakes (3-way for TCP, 4-way for SCTP, any properly-designed UDP protocol implements a similar one to prevent amplification attacks) and slow-start. Currently both of those are on a per-connection (defined as an L4 connection) basis.<p>What if there was a concept of "endpoint associations" in addition to connections? An endpoint association would be a bundle of connections, potentially from different applications, between the same endpoints. An active endpoint association would include congestion control information (so new connections within an established association could immediately start communicating at full speed) and also means the endpoints are authenticated. That makes the handshake only necessary for creation of associations, not individual connections.<p>If that was done at the OS level, the process for opening a new connection would be something like:<p>1. User wants to open a connection to 1.2.3.4:80. (L4 protocol doesn't really matter for the example.)<p>2. OS checks if there is a currently active endpoint association with 1.2.3.4.<p>3. If there is an endpoint association, create a connection within that association and start sending data immediately, with no handshake, and using the congestion control information (window size) from the association.<p>4. If there isn't, open an endpoint association, complete the handshake for that, and open the connection within the newly created association. (Future connections would be able to go through the simplified and quicker process above.)<p>I think the handshake isn't a big issue, but eliminating slow-start for connections to an already-established association should be beneficial. Thoughts?
i´ve been waiting for the rationale from google for a long time. It was love at first sight, when the QUIC source code arrived at my cloned chromium repo for the first time :)<p>very promissing and sophisticate tech!
How much does this share with uTP[1], goal and/or design-wise? It seems like they have related aims, at least (reduced latency, defeat TCP head-of-line blocking).<p>[1]: <a href="http://en.wikipedia.org/wiki/Micro_Transport_Protocol" rel="nofollow">http://en.wikipedia.org/wiki/Micro_Transport_Protocol</a>
How does this deal with clients behind a NAT? Do modern NATs transparently treat outgoing UDP the same way they do TCP, mapping the port numbers to allow associating the return UDP packets with the right client?