devsisters / goquic

QUIC support for Go
http://devsisters.github.io/goquic/
BSD 3-Clause "New" or "Revised" License
942 stars 100 forks source link

goquic does not work with chromium 49 ? #23

Closed Eimji closed 8 years ago

Eimji commented 8 years ago

Hello

I have just found that goquic (the server.go in the folder example, as well as my goquic-baser server implementation) did not work with the latest version of chromium 49.0.2623.87 (Built on 8.3, running on Debian 8.3 (64-bit)).When trying on another computer with chromium version 48, the server codes work flawlessly.

Please, could you tell me if the problem is on my own side or not ?

Thanks in advance.

.

hodduc commented 8 years ago

Chromium team currently disabled QUIC on recent Chrome to connect non-Google hosts. See this: https://groups.google.com/a/chromium.org/forum/#!topic/proto-quic/-KUJWxSjxnQ

To connect with GoQuic server, you should provide --quic-host-whitelist="" flags on Chrome startup .

Eimji commented 8 years ago

Thanks a lot, you rock !!!