mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
17 lines
422 B
Go
17 lines
422 B
Go
package wire
|
|
|
|
import (
|
|
"github.com/quic-go/quic-go/internal/protocol"
|
|
)
|
|
|
|
// A HandshakeDoneFrame is a HANDSHAKE_DONE frame
|
|
type HandshakeDoneFrame struct{}
|
|
|
|
func (f *HandshakeDoneFrame) Append(b []byte, _ protocol.VersionNumber) ([]byte, error) {
|
|
return append(b, handshakeDoneFrameType), nil
|
|
}
|
|
|
|
// Length of a written frame
|
|
func (f *HandshakeDoneFrame) Length(_ protocol.VersionNumber) protocol.ByteCount {
|
|
return 1
|
|
}
|