mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +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
|
@ -278,7 +278,7 @@ var _ = Describe("Connection ID Manager", func() {
|
|||
m.SentPacket()
|
||||
|
||||
connID := m.Get()
|
||||
if !connID.Equal(lastConnID) {
|
||||
if connID != lastConnID {
|
||||
counter++
|
||||
lastConnID = connID
|
||||
Expect(removedTokens).To(HaveLen(1))
|
||||
|
@ -306,7 +306,7 @@ var _ = Describe("Connection ID Manager", func() {
|
|||
Expect(m.Get()).To(Equal(protocol.ParseConnectionID([]byte{10, 10, 10, 10})))
|
||||
for {
|
||||
m.SentPacket()
|
||||
if m.Get().Equal(protocol.ParseConnectionID([]byte{11, 11, 11, 11})) {
|
||||
if m.Get() == protocol.ParseConnectionID([]byte{11, 11, 11, 11}) {
|
||||
break
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue