rename quicConn.earlySessionReady to quicConn.earlyConnReady

This commit is contained in:
Marten Seemann 2022-03-26 15:41:58 +01:00
parent 1ae835d1d8
commit a088ba4607
7 changed files with 21 additions and 21 deletions

View file

@ -311,7 +311,7 @@ func (c *client) dial(ctx context.Context) error {
// Otherwise, earlyConnChan will be nil. Receiving from a nil chan blocks forever.
var earlyConnChan <-chan struct{}
if c.use0RTT {
earlyConnChan = c.conn.earlySessionReady()
earlyConnChan = c.conn.earlyConnReady()
}
select {