implement sending of datagrams

This commit is contained in:
Marten Seemann 2019-10-06 20:52:14 +02:00
parent fdaac4f32e
commit 791f896f80
4 changed files with 48 additions and 0 deletions

View file

@ -187,6 +187,10 @@ type Session interface {
// It blocks until the handshake completes.
// Warning: This API should not be considered stable and might change soon.
ConnectionState() ConnectionState
// SendMessage sends a message as a datagram.
// See https://datatracker.ietf.org/doc/draft-pauly-quic-datagram/.
SendMessage([]byte) error
}
// An EarlySession is a session that is handshaking.