Questions tagged [quic]

QUIC (pronounced quick) is a multiplexed stream transport protocol over UDP. It is a transport level network protocol designed at Google. The tag applies to questions related to the protocol and its implementations such as libquic. QUIC is an acronym for Quick UDP Internet Connections.

QUIC (pronounced quick) is a transport level network protocol originally designed at Google and currently being standardised by the IETF. It provides security protection and implements connection semantics over UDP. As of 2016 it is used to stream YouTube traffic to capable browsers.

The protocol is documented in an IETF RFC Draft. The project website is hosted by Google. And libquic is an implementation with minimal dependencies to Chromium sources.

129 questions
0
votes
1 answer

Is hard real time udp communications possible with QUIC, WebRTC, or ORTC?

Hard real time udp communications is quite appealing. WebRTC and Object Real Time Communications (ORTC) claim to provide real time communications with udp. Does this mean "close enough to wall clock time to not notice" or are they designed with hard…
Marc Compere
  • 290
  • 4
  • 17
0
votes
1 answer

QUIC protocol on Node.js gRPC library

Is there a way to enable QUIC protocol in Node.js gRPC library? On client side (Android app), I can swap out the transport channel for Cronet's implementation which supports QUIC, but I can't figure out how to enable the protocol on server's side.…
koperko
  • 2,447
  • 13
  • 19
0
votes
1 answer

What are the general techniques that allow for a HTTP page to respond to new information on a server (meta refresh, polling, etc)?

I'm looking for a timeline of historic to modern approaches to updating client side content. Take for example the process of ordering, preparing, and delivering a pizza. What are the various techniques that are possible to update client side…
TLDR
  • 1,198
  • 1
  • 12
  • 31
0
votes
1 answer

Android WebView to work with QUIC

I am playing a YouTube video on a Android WebView and need it to work with QUIC protocol. Up until now I can only see TCP packets but no UDP. When I play a video in YouTube's app it works with QUIC. Chrome app also work with QUIC. I have tried this…
dardi
  • 39
  • 4
0
votes
1 answer

how WebRTC handles NAT rebinding?

In a cellular environment, the ip address assigned for a phone changes dynamically. So i wonder how WebRTC deals with this issue. Does WebRTC has some feature called 'Path Migration' like QUIC ? Is ICE Restart what i am finding?
Sai Jiang
  • 53
  • 6
0
votes
1 answer

Why is Google search not using QUIC?

I saw Google search set the alt-svc header, with QUIC version 39 in header string. 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'm using Google…
-1
votes
1 answer

Litespeed QUIC enabling

Ubuntu 20.04 LSWS 5.4.8 QUIC is working in WebAdmin, but don't work at any Virtual hosts. How can I enable that thing in virtual host on subdomain. UDP ports are opened, Firewall is disabled. Commands outputs: 443 udp listening, ufw status Any…
gluktd
  • 46
  • 5
-1
votes
1 answer

Install HTTP/3 at G-WAN

According to you, is it possible to properly install the use of HTTP/3 on a web server such as GWAN ? If yes, do you have an idea of ideal way to proceed ? I was thinking of using a quic lib (wich one ? quiche) in the init.c file but I can't figure…
John S
  • 231
  • 3
  • 11
-2
votes
1 answer

implementing QUIC protocol in mininet

I'm trying to run QUIC in mininet(miniedit in specific) and going through some troubles here. I've downloaded QUIC toy server&client from chromium.googlesource.com Ran eth it mentioned including simple tests and it worked just fine. Now I want to…
1 2 3
8
9