implement a non-forward-secure session

This commit is contained in:
Marten Seemann 2017-05-08 13:15:42 +08:00
parent fb77a79b2b
commit cb8bea73c7
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
4 changed files with 81 additions and 4 deletions

View file

@ -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 {