mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
minor protocol test fixes
This commit is contained in:
parent
55e32b9d96
commit
40acb8e9b5
3 changed files with 8 additions and 4 deletions
|
@ -2,6 +2,7 @@ package protocol_test
|
|||
|
||||
import (
|
||||
"github.com/lucas-clemente/quic-go/protocol"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
)
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
package protocol
|
||||
package protocol_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"math"
|
||||
|
||||
. "github.com/lucas-clemente/quic-go/protocol"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
)
|
||||
|
|
|
@ -2,8 +2,7 @@ package protocol
|
|||
|
||||
import (
|
||||
"bytes"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/utils"
|
||||
"encoding/binary"
|
||||
)
|
||||
|
||||
// VersionNumber is a version number as int
|
||||
|
@ -41,7 +40,9 @@ func IsSupportedVersion(v VersionNumber) bool {
|
|||
func init() {
|
||||
var b bytes.Buffer
|
||||
for _, v := range SupportedVersions {
|
||||
utils.WriteUint32(&b, VersionNumberToTag(v))
|
||||
s := make([]byte, 4)
|
||||
binary.LittleEndian.PutUint32(s, VersionNumberToTag(v))
|
||||
b.Write(s)
|
||||
}
|
||||
SupportedVersionsAsTags = b.Bytes()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue