Dan Boros

Results 3 issues of Dan Boros

It seems `NSSelectOne` returns a nil pointer w/o an error for `found` if the element is not present. I found this while chasing a production panic that's using this repo...

Seems to happen on `facebook.com` as well as `fbcdn.net`. Minimal recreate below. ```Go package main import ( "fmt" "net" "net/http" "strings" "time" utls "github.com/refraction-networking/utls" "golang.org/x/net/http2" ) func main() { hostWithoutPort...

enhancement
help wanted

I believe there's a race between the two paths when using HTTP/3 for the transport. I found this when hitting a `panic` here in `internal/http3/transport.go`: ``` return conn, t.newClientConn(conn), nil...