Revert "Update quic-go"

This reverts commit f9f68cf0a3.

quic-go >= 1.0.35 panics

We may not be using the new API correctly.
This commit is contained in:
Frank Denis 2023-06-22 11:05:44 +02:00
parent f42b7dad17
commit 23a6cd7504
112 changed files with 2571 additions and 5590 deletions

View file

@ -279,7 +279,7 @@ func (xTransport *XTransport) rebuildTransport() {
ipOnly = "[" + cachedIP.String() + "]"
}
} else {
dlog.Debugf("[%s] IP address was not cached in H3 context", host)
dlog.Debugf("[%s] IP address was not cached in H3 DialContext", host)
}
addrStr = ipOnly + ":" + strconv.Itoa(port)
udpAddr, err := net.ResolveUDPAddr("udp", addrStr)
@ -292,8 +292,7 @@ func (xTransport *XTransport) rebuildTransport() {
return nil, err
}
}
tlsCfg.ServerName = host
return quic.DialEarly(ctx, xTransport.h3UDPConn, udpAddr, tlsCfg, cfg)
return quic.DialEarlyContext(ctx, xTransport.h3UDPConn, udpAddr, host, tlsCfg, cfg)
}}
xTransport.h3Transport = h3Transport
}