mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use a chan instead of a context in Connection.HandshakeComplete (#3709)
This commit is contained in:
parent
41ddaa0262
commit
a4b0265628
14 changed files with 66 additions and 65 deletions
|
@ -197,9 +197,10 @@ type EarlyConnection interface {
|
|||
Connection
|
||||
|
||||
// HandshakeComplete blocks until the handshake completes (or fails).
|
||||
// Data sent before completion of the handshake is encrypted with 1-RTT keys.
|
||||
// Note that the client's identity hasn't been verified yet.
|
||||
HandshakeComplete() context.Context
|
||||
// For the client, data sent before completion of the handshake is encrypted with 0-RTT keys.
|
||||
// For the serfer, data sent before completion of the handshake is encrypted with 1-RTT keys,
|
||||
// however the client's identity is only verified once the handshake completes.
|
||||
HandshakeComplete() <-chan struct{}
|
||||
|
||||
NextConnection() Connection
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue