mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
tighten typing of channel in the crypto setup
This commit is contained in:
parent
2e98150cd4
commit
12d50e6810
1 changed files with 4 additions and 3 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue