AxbB36
AxbB36
I had some success by switching [`http2.Transport`](https://godoc.org/golang.org/x/net/http2#Transport) for `http.Transport`: ```diff package main import ( + gotls "crypto/tls" "flag" "fmt" "io" @@ -11,6 +12,7 @@ import ( "strings" utls "github.com/refraction-networking/utls" +...
Yawning has a commit adding uTLS to obfs4proxy's meek_lite mode: https://gitlab.com/yawning/obfs4/commit/4d453dab2120082b00bf6e63ab4aaeeda6b8d8a3 It uses an I idea I didn't think of. Instead of setting `DialTLS` on an `http.Transport` and using it...
> the DialTLS says it's for non-proxied HTTPS requests,But if I want to make requests with transport and proxy,How to make that? There are some code samples here, from the...
This comment is just to report a negative result, an idea I had that turned out not to work. Setting [`ForceAttemptHTTP2`](https://pkg.go.dev/net/http#Transport.ForceAttemptHTTP2) to true on an `http.Transport` that uses a uTLS...
> As it creates two goroutine for reading and writing messages, there is no guarantee that Write() being called before Read(). I was just bitten by this problem as well,...