mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 04:07:35 +03:00
remove ConnectionID.Equal function
Connection IDs can now be compared with ==.
This commit is contained in:
parent
1aced95d41
commit
4cbb4f8114
9 changed files with 17 additions and 34 deletions
|
@ -35,7 +35,7 @@ func Fuzz(data []byte) int {
|
|||
if err != nil {
|
||||
return 0
|
||||
}
|
||||
if !hdr.DestConnectionID.Equal(connID) {
|
||||
if hdr.DestConnectionID != connID {
|
||||
panic(fmt.Sprintf("Expected connection IDs to match: %s vs %s", hdr.DestConnectionID, connID))
|
||||
}
|
||||
if (hdr.Type == protocol.PacketType0RTT) != is0RTTPacket {
|
||||
|
|
|
@ -132,10 +132,10 @@ func newRetryToken(tg *handshake.TokenGenerator, data []byte) int {
|
|||
if token.SentTime.Before(start) || token.SentTime.After(time.Now()) {
|
||||
panic("incorrect send time")
|
||||
}
|
||||
if !token.OriginalDestConnectionID.Equal(origDestConnID) {
|
||||
if token.OriginalDestConnectionID != origDestConnID {
|
||||
panic("orig dest conn ID doesn't match")
|
||||
}
|
||||
if !token.RetrySrcConnectionID.Equal(retrySrcConnID) {
|
||||
if token.RetrySrcConnectionID != retrySrcConnID {
|
||||
panic("retry src conn ID doesn't match")
|
||||
}
|
||||
return 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue