Questions tagged [quic-go]
5 questions
3
votes
1 answer
HTTP/3 request with HTTP/S or SOCKS5 proxy
It seems like quic-go does not support proxy for HTTP request like HTTP/2 module, how can I use HTTP/S proxy or SOCKS5 proxy with quic-go for HTTP requests?

Võ Bảo
- 67
- 2
1
vote
0 answers
quic-go http3 can not access
My code:
package main
import (
"github.com/quic-go/quic-go/http3"
"log"
"net/http"
)
func main() {
mux := http.NewServeMux()
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello,…

Inasa Xia
- 433
- 5
- 12
1
vote
1 answer
Can we send request form server to client and get response through quic/http3?
I'm using quic-go to implement my thought, I need the server to forwardly send request to client to get response, just like we do that client sends request to web server commonly. But with quic-go, after connection is setup, can server initialize…

Suge
- 2,808
- 3
- 48
- 79
0
votes
1 answer
Why `GO` integer `uint32` numbers are not equal after being converted to `float32`
Why is the float32 integer part inconsistent with the original uint32 integer part after uint32 integer is converted to float32, but the float64 integer part is consistent with the original uint32 after converting it to float64.
import (
…

yoer k.
- 1
- 4
0
votes
1 answer
Why does this code output the error `fatal error: all goroutines are asleep - deadlock!`
Recently I was learning go language and wrote a piece of code, but the output is wrongfatal error: all goroutines are asleep - deadlock!
I checked a lot of information on the Internet, but couldn't find the correct solution. Has anyone encountered…

Nemo
- 1
- 3