mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
12 lines
277 B
Go
12 lines
277 B
Go
package utils
|
|
|
|
import (
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
)
|
|
|
|
// NewConnectionID is a new connection ID
|
|
type NewConnectionID struct {
|
|
SequenceNumber uint64
|
|
ConnectionID protocol.ConnectionID
|
|
StatelessResetToken protocol.StatelessResetToken
|
|
}
|