diff options
author | Vladimir Homutov <vl@nginx.com> | 2020-03-17 14:10:37 +0300 |
---|---|---|
committer | Vladimir Homutov <vl@nginx.com> | 2020-03-17 14:10:37 +0300 |
commit | cd54c1cab72bf6fa4a2c935d31f739c0fc4a265c (patch) | |
tree | b20c89b16a490b754336e9273c423328ac8d12d1 /src/http/ngx_http_request.h | |
parent | ca7943393ef1d355c1bde7df91e3f652a4400424 (diff) | |
download | nginx-cd54c1cab72bf6fa4a2c935d31f739c0fc4a265c.tar.gz nginx-cd54c1cab72bf6fa4a2c935d31f739c0fc4a265c.zip |
Firefox fixes.
+ support for more than one initial packet
+ workaround for trailing zeroes in packet
+ ignore application data packet if no keys yet (issue in draft 27/ff nightly)
+ fixed PING frame parser
+ STREAM frames need to be acknowledged
The following HTTP configuration is used for firefox (v74):
http {
ssl_certificate_key localhost.key;
ssl_certificate localhost.crt;
ssl_protocols TLSv1.2 TLSv1.3;
server {
listen 127.0.0.1:10368 reuseport http3;
ssl_quic on;
server_name localhost;
location / {
return 200 "This-is-QUICK\n";
}
}
server {
listen 127.0.0.1:5555 ssl; # point the browser here
server_name localhost;
location / {
add_header Alt-Svc 'h3-24=":10368";ma=100';
return 200 "ALT-SVC";
}
}
}
Diffstat (limited to 'src/http/ngx_http_request.h')
0 files changed, 0 insertions, 0 deletions