mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
internal/byteorder: use canonical Go casing in names
If Be and Le stand for big-endian and little-endian, then they should be BE and LE. Change-Id: I723e3962b8918da84791783d3c547638f1c9e8a9 Reviewed-on: https://go-review.googlesource.com/c/go/+/627376 Reviewed-by: Robert Griesemer <gri@google.com> Auto-Submit: Russ Cox <rsc@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
This commit is contained in:
parent
0d5c2fe3a1
commit
f37765f45c
5 changed files with 5 additions and 5 deletions
|
@ -261,7 +261,7 @@ func bogoShim() {
|
|||
|
||||
// Write the shim ID we were passed as a little endian uint64
|
||||
shimIDBytes := make([]byte, 8)
|
||||
byteorder.LePutUint64(shimIDBytes, *shimID)
|
||||
byteorder.LEPutUint64(shimIDBytes, *shimID)
|
||||
if _, err := conn.Write(shimIDBytes); err != nil {
|
||||
log.Fatalf("failed to write shim id: %s", err)
|
||||
}
|
||||
|
|
|
@ -714,7 +714,7 @@ func (hs *clientHandshakeState) doFullHandshake() error {
|
|||
return err
|
||||
}
|
||||
if len(skx.key) >= 3 && skx.key[0] == 3 /* named curve */ {
|
||||
c.curveID = CurveID(byteorder.BeUint16(skx.key[1:]))
|
||||
c.curveID = CurveID(byteorder.BEUint16(skx.key[1:]))
|
||||
}
|
||||
|
||||
msg, err = c.readHandshake(&hs.finishedHash)
|
||||
|
|
|
@ -207,7 +207,7 @@ func (test *clientTest) connFromCommand() (conn *recordingConn, child *exec.Cmd,
|
|||
var serverInfo bytes.Buffer
|
||||
for _, ext := range test.extensions {
|
||||
pem.Encode(&serverInfo, &pem.Block{
|
||||
Type: fmt.Sprintf("SERVERINFO FOR EXTENSION %d", byteorder.BeUint16(ext)),
|
||||
Type: fmt.Sprintf("SERVERINFO FOR EXTENSION %d", byteorder.BEUint16(ext)),
|
||||
Bytes: ext,
|
||||
})
|
||||
}
|
||||
|
|
|
@ -593,7 +593,7 @@ func (hs *serverHandshakeState) doFullHandshake() error {
|
|||
}
|
||||
if skx != nil {
|
||||
if len(skx.key) >= 3 && skx.key[0] == 3 /* named curve */ {
|
||||
c.curveID = CurveID(byteorder.BeUint16(skx.key[1:]))
|
||||
c.curveID = CurveID(byteorder.BEUint16(skx.key[1:]))
|
||||
}
|
||||
if _, err := hs.c.writeHandshakeRecord(skx, &hs.finishedHash); err != nil {
|
||||
return err
|
||||
|
|
|
@ -900,7 +900,7 @@ func (c *Conn) sendSessionTicket(earlyData bool, extra [][]byte) error {
|
|||
if _, err := c.config.rand().Read(ageAdd); err != nil {
|
||||
return err
|
||||
}
|
||||
m.ageAdd = byteorder.LeUint32(ageAdd)
|
||||
m.ageAdd = byteorder.LEUint32(ageAdd)
|
||||
|
||||
if earlyData {
|
||||
// RFC 9001, Section 4.6.1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue