mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
return from Dial after conn is forward-secure, unless ConnState is given
This commit is contained in:
parent
6f27b7f70d
commit
8bfeb2ea8d
4 changed files with 54 additions and 35 deletions
|
@ -36,8 +36,10 @@ type Session interface {
|
|||
type ConnState int
|
||||
|
||||
const (
|
||||
// ConnStateInitial is the initial state
|
||||
ConnStateInitial ConnState = iota
|
||||
// ConnStateVersionNegotiated means that version negotiation is complete
|
||||
ConnStateVersionNegotiated ConnState = iota
|
||||
ConnStateVersionNegotiated
|
||||
// ConnStateSecure means that the connection is encrypted
|
||||
ConnStateSecure
|
||||
// ConnStateForwardSecure means that the connection is forward secure
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue