Which services of Google supported by QUIC

903 views
Skip to first unread message

Van Tong

unread,
Jan 18, 2018, 11:39:18 PM1/18/18
to QUIC Prototype Protocol Discussion group
Hi all,

I found that youtube is supported by QUIC.
I also capture packet when I upload file to Google driver, I found lots of QUIC packet. Is Google driver supported by QUIC?

Any body know how to define whether a service of Google supported by QUIC or not? Which service of Google is supported by QUIC ?

Thank you in advance!

Ryan Hamilton

unread,
Jan 19, 2018, 10:24:00 AM1/19/18
to proto...@chromium.org
Basically all Google services support QUIC these days. You can look for the Alt-Svc header in response headers from a Google server to confirm.

--
You received this message because you are subscribed to the Google Groups "QUIC Prototype Protocol Discussion group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to proto-quic+unsubscribe@chromium.org.
To post to this group, send email to proto...@chromium.org.
For more options, visit https://groups.google.com/a/chromium.org/d/optout.

Van Tong

unread,
Jan 19, 2018, 9:35:20 PM1/19/18
to proto...@chromium.org
Thank for your quick response.
QUIC is implemented on the top of UDP. Is the accuracy of data transferring 100 percent?
For example, I think that Google mail need 100 percent of accuracy.
The connection to this site is supported by TLS v1.2.


However, I found that Alt-svc of Google mail:
alt-svc:
hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"


Vào 22:24:00 UTC+7 Thứ Sáu, ngày 19 tháng 1 năm 2018, r...@chromium.org đã viết:
Basically all Google services support QUIC these days. You can look for the Alt-Svc header in response headers from a Google server to confirm.
On Thu, Jan 18, 2018 at 8:39 PM, Van Tong <tongva...@gmail.com> wrote:
Hi all,

I found that youtube is supported by QUIC.
I also capture packet when I upload file to Google driver, I found lots of QUIC packet. Is Google driver supported by QUIC?

Any body know how to define whether a service of Google supported by QUIC or not? Which service of Google is supported by QUIC ?

Thank you in advance!

--
You received this message because you are subscribed to the Google Groups "QUIC Prototype Protocol Discussion group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to proto-quic+...@chromium.org.

Ryan Hamilton

unread,
Jan 19, 2018, 10:34:13 PM1/19/18
to proto...@chromium.org
Yes, QUIC provides reliable delivery.

On Fri, Jan 19, 2018 at 6:35 PM, Van Tong <tongva...@gmail.com> wrote:
Thank for your quick response.
QUIC is implemented on the top of UDP. Is the accuracy of data transferring 100 percent?
For example, Google mail need 100 percent of accuracy.


Vào 22:24:00 UTC+7 Thứ Sáu, ngày 19 tháng 1 năm 2018, r...@chromium.org đã viết:
Basically all Google services support QUIC these days. You can look for the Alt-Svc header in response headers from a Google server to confirm.

On Thu, Jan 18, 2018 at 8:39 PM, Van Tong <tongva...@gmail.com> wrote:
Hi all,

I found that youtube is supported by QUIC.
I also capture packet when I upload file to Google driver, I found lots of QUIC packet. Is Google driver supported by QUIC?

Any body know how to define whether a service of Google supported by QUIC or not? Which service of Google is supported by QUIC ?

Thank you in advance!

--
You received this message because you are subscribed to the Google Groups "QUIC Prototype Protocol Discussion group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to proto-quic+...@chromium.org.
To post to this group, send email to proto...@chromium.org.
For more options, visit https://groups.google.com/a/chromium.org/d/optout.

--
You received this message because you are subscribed to the Google Groups "QUIC Prototype Protocol Discussion group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to proto-quic+unsubscribe@chromium.org.

Van Tong

unread,
Jan 20, 2018, 1:51:41 AM1/20/18
to proto...@chromium.org
When I enable QUIC and log in Gmail, the connection is encrypted and authenticated by TLS1.2.

However, I got the alt-svc as in following:

alt-svc:
hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"

I just want to ask that Gmail whether is supported by QUIC or not? And why I got this?


Vào 10:34:13 UTC+7 Thứ Bảy, ngày 20 tháng 1 năm 2018, r...@chromium.org đã viết:

Bin Wu

unread,
Jan 23, 2018, 10:24:51 PM1/23/18
to QUIC Prototype Protocol Discussion group


On Saturday, January 20, 2018 at 1:51:41 AM UTC-5, Van Tong wrote:
When I enable QUIC and log in Gmail, the connection is encrypted and authenticated by TLS1.2.

However, I got the alt-svc as in following:

alt-svc:
hq=":443"; ma=2592000; quic=51303431; quic=51303339; quic=51303338; quic=51303337; quic=51303335,quic=":443"; ma=2592000; v="41,39,38,37,35"

I just want to ask that Gmail whether is supported by QUIC or not? And why I got this?
This alt-svc means the same resource(gmail, in this case) you are accessing can be accessed via quic. 
  • hq=":443" means the resource can be accessed on port 443 of the same host, using 'http over quic'.
  • ma=2592000 means the information in the alt-svc is valid for 2592000 seconds, or 30 days.
  • quic=51303339 means the server can talk in quic version 'Q039'.
Note there is a comma before quic=":443", the string before and after that comma are just different formats for the same information.

Also note the format is not standardized yet, to see what it looks like in the latest draft, go to: https://datatracker.ietf.org/doc/draft-ietf-quic-http/?include_text=1

Victor Vasiliev

unread,
Jan 24, 2018, 12:22:27 AM1/24/18
to QUIC Prototype Protocol Discussion group


On Saturday, January 20, 2018 at 1:51:41 AM UTC-5, Van Tong wrote:
When I enable QUIC and log in Gmail, the connection is encrypted and authenticated by TLS1.2.


Gmail is currently one of the very few Google services that does not use QUIC; this is temporary, and will likely change in the future.  Google Search, Calendar, YouTube and most other Google services do support QUIC.

I am somewhat surprised you got that alt-svc from Gmail;  I get "Alt-Svc: clear" whenever I try to talk to either gmail.com or mail.google.com.

Van Tong

unread,
Jan 24, 2018, 12:39:22 AM1/24/18
to proto...@chromium.org
Thank you for your response.
OK. I got "Alt-Svc:clear" when I access to mail.google.com. I misunderstand about this.

I have a question related to Google Hangout. Is Google Hangout supported by QUIC?
I just want to know exactly about this.

Vào 12:22:27 UTC+7 Thứ Tư, ngày 24 tháng 1 năm 2018, Victor Vasiliev đã viết:

Bin Wu

unread,
Jan 24, 2018, 10:28:38 AM1/24/18
to QUIC Prototype Protocol Discussion group
Accoreding to Alt-Svc, Hangout's web frontend, hangouts.google.com, does support quic. But it doesn't mean the hangout apps(on ios, andrioid, etc) use quic.

Van Tong

unread,
Jan 24, 2018, 8:29:06 PM1/24/18
to QUIC Prototype Protocol Discussion group
Thank you for your response.

Vào 22:28:38 UTC+7 Thứ Tư, ngày 24 tháng 1 năm 2018, Bin Wu đã viết:
Reply all
Reply to author
Forward
0 new messages