mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27: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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue