mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
implement a non-forward-secure session
This commit is contained in:
parent
fb77a79b2b
commit
cb8bea73c7
4 changed files with 81 additions and 4 deletions
|
@ -38,6 +38,13 @@ type Session interface {
|
|||
Close(error) error
|
||||
}
|
||||
|
||||
// A NonFWSession is a QUIC connection between two peers half-way through the handshake.
|
||||
// The communication is encrypted, but not yet forward secure.
|
||||
type NonFWSession interface {
|
||||
Session
|
||||
WaitUntilHandshakeComplete() error
|
||||
}
|
||||
|
||||
// Config contains all configuration data needed for a QUIC server or client.
|
||||
// More config parameters (such as timeouts) will be added soon, see e.g. https://github.com/lucas-clemente/quic-go/issues/441.
|
||||
type Config struct {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue