Re: [Bug-wget] TCP Fast Open for HTTP

2015-05-29 Thread Daniel Stenberg
On Thu, 28 May 2015, Tim Rühsen wrote: BTW, an alternative might be QUIC (http://en.wikipedia.org/wiki/QUIC). QUIC approaches the same problem (RTT). But it seems far from being standardized though there seems support in Apache and Nginx. Support in Apache and Nginx, really? Any

Re: [Bug-wget] TCP Fast Open for HTTP

2015-05-29 Thread Tim Ruehsen
On Friday 29 May 2015 13:29:17 Daniel Stenberg wrote: On Thu, 28 May 2015, Tim Rühsen wrote: BTW, an alternative might be QUIC (http://en.wikipedia.org/wiki/QUIC). QUIC approaches the same problem (RTT). But it seems far from being standardized though there seems support in Apache and

Re: [Bug-wget] TCP Fast Open for HTTP

2015-05-28 Thread Tim Rühsen
Am Donnerstag, 28. Mai 2015, 18:51:52 schrieb Giuseppe Scrivano: Hubert Tarasiuk hubert.taras...@gmail.com writes: W dniu 28.05.2015 o 10:26, Giuseppe Scrivano pisze: Hubert Tarasiuk I wouldn't even have an option for --tcp-fast-open and avoid adding such low level details to the command

Re: [Bug-wget] TCP Fast Open for HTTP

2015-05-28 Thread Giuseppe Scrivano
Hubert Tarasiuk hubert.taras...@gmail.com writes: I have talked with Giuseppe and he suggested that we might not do TCP Fast Open support for FTP at this time (he argued that FTP is slow either way :). Instead I might focus on implementing some basics of Metalink protocol for HTTP and FTP

Re: [Bug-wget] TCP Fast Open for HTTP

2015-05-28 Thread Tim Ruehsen
On Thursday 28 May 2015 10:26:41 Giuseppe Scrivano wrote: Hubert Tarasiuk hubert.taras...@gmail.com writes: I have talked with Giuseppe and he suggested that we might not do TCP Fast Open support for FTP at this time (he argued that FTP is slow either way :). Instead I might focus on

Re: [Bug-wget] TCP Fast Open for HTTP

2015-05-28 Thread Hubert Tarasiuk
W dniu 28.05.2015 o 10:26, Giuseppe Scrivano pisze: Hubert Tarasiuk I wouldn't even have an option for --tcp-fast-open and avoid adding such low level details to the command line. I would rather go for an env variable like TCP_FAST_OPEN=1, that wget might honor or not and not worry where it

Re: [Bug-wget] TCP Fast Open for HTTP

2015-05-28 Thread Giuseppe Scrivano
Hubert Tarasiuk hubert.taras...@gmail.com writes: W dniu 28.05.2015 o 10:26, Giuseppe Scrivano pisze: Hubert Tarasiuk I wouldn't even have an option for --tcp-fast-open and avoid adding such low level details to the command line. I would rather go for an env variable like TCP_FAST_OPEN=1,

[Bug-wget] TCP Fast Open for HTTP

2015-05-27 Thread Hubert Tarasiuk
Hello Wget developers, I have prepared TCP Fast Open support for HTTP requests in Wget. I have prepared sample TCP segment dump to show how it works: https://github.com/jy987321/Wget/wiki/TCP-TFO The TFO is disabled by default and can be enabled using --tcp-fast-open option when running Wget.

Re: [Bug-wget] TCP Fast Open for HTTP

2015-05-27 Thread Hubert Tarasiuk
I have talked with Giuseppe and he suggested that we might not do TCP Fast Open support for FTP at this time (he argued that FTP is slow either way :). Instead I might focus on implementing some basics of Metalink protocol for HTTP and FTP resources in Wget. Do you have any thoughts about that?