Karthik Das
Karthik Das
Hai @jlaine Thank you for replying back. When I tried without multi-threading,then connection migration is successful happening just before start of file download or just after file download but not...
To run server /root/ngtcp2/examples/server --timeout=100h --show-secret --htdocs=/var/www/html/ 172.16.2.1 4434 /root/openssl/example.key /root/openssl/example.crt /var/www/html/ is file which you want to transfer folder path /root/ngtcp2/examples/client --download=/tmp/ --exit-on-all-streams-close --no-http-dump --no-quic-dump 172.16.2.1 4434 https://172.16.2.1:4434/test.pdf /tmp/...
To create key and certificate using openssl on ubuntu cd /root/openssl/ openssl req -newkey rsa:4096 -x509 -sha256 -days 3650 -nodes -out example.crt -keyout example.key Start ngtcp server with 8443 or...
i build nginx with below args ``` root@ubuntu:~# /src/nginx-quiche/objs/nginx -V nginx version: nginx/1.16.1 (quiche-cf2a087) built by gcc 11.4.0 (Ubuntu 11.4.0-1ubuntu1~22.04) built with OpenSSL 1.1.1 (compatible; BoringSSL) (running with BoringSSL) TLS...
can you add below header also ``` add_header X-protocol $server_protocol always; ``` and can you send ```netstat -alpn | grep nginx``` output
can you try below config it works for me ``` # to use the same port for quic and https listen 5443 quic reuseport; listen [::]:5443 quic reuseport; listen 5443...
can you send me client output
seems to me this is nginx error log file output
i think you didn't even tried with http3 try as ``` curl --http3-only -v -k https://ryetong.cn:5443/ ```
and does your curl support quic? curl -V output ?