mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
implement sending of datagrams
This commit is contained in:
parent
fdaac4f32e
commit
791f896f80
4 changed files with 48 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue