remove ConnectionID.Equal function

Connection IDs can now be compared with ==.
This commit is contained in:
Marten Seemann 2022-08-28 16:11:28 +03:00
parent 1aced95d41
commit 4cbb4f8114
9 changed files with 17 additions and 34 deletions

View file

@ -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 {