tighten typing of channel in the crypto setup

This commit is contained in:
Marten Seemann 2022-05-19 11:37:08 +02:00
parent 2e98150cd4
commit 12d50e6810

View file

@ -113,7 +113,7 @@ type cryptoSetup struct {
zeroRTTParameters *wire.TransportParameters zeroRTTParameters *wire.TransportParameters
clientHelloWritten bool clientHelloWritten bool
clientHelloWrittenChan chan *wire.TransportParameters clientHelloWrittenChan chan<- *wire.TransportParameters
rttStats *utils.RTTStats rttStats *utils.RTTStats
@ -238,6 +238,7 @@ func newCryptoSetup(
tracer.UpdatedKeyFromTLS(protocol.EncryptionInitial, protocol.PerspectiveServer) tracer.UpdatedKeyFromTLS(protocol.EncryptionInitial, protocol.PerspectiveServer)
} }
extHandler := newExtensionHandler(tp.Marshal(perspective), perspective, version) extHandler := newExtensionHandler(tp.Marshal(perspective), perspective, version)
clientHelloWrittenChan := make(chan *wire.TransportParameters, 1)
cs := &cryptoSetup{ cs := &cryptoSetup{
tlsConf: tlsConf, tlsConf: tlsConf,
initialStream: initialStream, initialStream: initialStream,
@ -256,7 +257,7 @@ func newCryptoSetup(
perspective: perspective, perspective: perspective,
handshakeDone: make(chan struct{}), handshakeDone: make(chan struct{}),
alertChan: make(chan uint8), alertChan: make(chan uint8),
clientHelloWrittenChan: make(chan *wire.TransportParameters, 1), clientHelloWrittenChan: clientHelloWrittenChan,
messageChan: make(chan []byte, 100), messageChan: make(chan []byte, 100),
isReadingHandshakeMessage: make(chan struct{}), isReadingHandshakeMessage: make(chan struct{}),
closeChan: make(chan struct{}), closeChan: make(chan struct{}),
@ -278,7 +279,7 @@ func newCryptoSetup(
GetAppDataForSessionState: cs.marshalDataForSessionState, GetAppDataForSessionState: cs.marshalDataForSessionState,
SetAppDataFromSessionState: cs.handleDataFromSessionState, SetAppDataFromSessionState: cs.handleDataFromSessionState,
} }
return cs, cs.clientHelloWrittenChan return cs, clientHelloWrittenChan
} }
func (h *cryptoSetup) ChangeConnectionID(id protocol.ConnectionID) { func (h *cryptoSetup) ChangeConnectionID(id protocol.ConnectionID) {