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

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