mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
introduce a protocol.StatelessResetToken
This commit is contained in:
parent
a4679bc02e
commit
a1bb39d6ab
28 changed files with 154 additions and 151 deletions
|
@ -12,7 +12,7 @@ type CloseReason struct {
|
|||
transportError *TransportError
|
||||
|
||||
timeout *TimeoutReason
|
||||
statelessResetToken *[16]byte
|
||||
statelessResetToken *StatelessResetToken
|
||||
}
|
||||
|
||||
// NewApplicationCloseReason creates a new CloseReason for an application error.
|
||||
|
@ -31,8 +31,8 @@ func NewTimeoutCloseReason(r TimeoutReason) CloseReason {
|
|||
}
|
||||
|
||||
// NewStatelessResetCloseReason creates a new CloseReason for a stateless reset.
|
||||
func NewStatelessResetCloseReason(token *[16]byte) CloseReason {
|
||||
return CloseReason{statelessResetToken: token}
|
||||
func NewStatelessResetCloseReason(token StatelessResetToken) CloseReason {
|
||||
return CloseReason{statelessResetToken: &token}
|
||||
}
|
||||
|
||||
// ApplicationError gets the application error.
|
||||
|
@ -60,7 +60,7 @@ func (r *CloseReason) Timeout() (reason TimeoutReason, ok bool) {
|
|||
}
|
||||
|
||||
// StatelessReset gets the stateless reset token.
|
||||
func (r *CloseReason) StatelessReset() (token [16]byte, ok bool) {
|
||||
func (r *CloseReason) StatelessReset() (token StatelessResetToken, ok bool) {
|
||||
if r.statelessResetToken == nil {
|
||||
return
|
||||
}
|
||||
|
|
|
@ -59,10 +59,10 @@ var _ = Describe("Close Reason", func() {
|
|||
})
|
||||
|
||||
It("stateless resets", func() {
|
||||
r := NewStatelessResetCloseReason(&[16]byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16})
|
||||
r := NewStatelessResetCloseReason(StatelessResetToken{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16})
|
||||
token, ok := r.StatelessReset()
|
||||
Expect(ok).To(BeTrue())
|
||||
Expect(token).To(Equal([16]byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}))
|
||||
Expect(token).To(Equal(StatelessResetToken{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}))
|
||||
checkNotApplicationError(r)
|
||||
checkNotTransportError(r)
|
||||
checkNotTimeout(r)
|
||||
|
|
|
@ -25,6 +25,8 @@ type (
|
|||
PacketNumber = protocol.PacketNumber
|
||||
// The Perspective is the role of a QUIC endpoint (client or server).
|
||||
Perspective = protocol.Perspective
|
||||
// A StatelessResetToken is a stateless reset token.
|
||||
StatelessResetToken = protocol.StatelessResetToken
|
||||
// The StreamID is the stream ID.
|
||||
StreamID = protocol.StreamID
|
||||
// The StreamNum is the number of the stream.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue