mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 20:47:36 +03:00
all: fix typos
Use the following (suboptimal) script to obtain a list of possible typos: #!/usr/bin/env sh set -x git ls-files |\ grep -e '\.\(c\|cc\|go\)$' |\ xargs -n 1\ awk\ '/\/\// { gsub(/.*\/\//, ""); print; } /\/\*/, /\*\// { gsub(/.*\/\*/, ""); gsub(/\*\/.*/, ""); }' |\ hunspell -d en_US -l |\ grep '^[[:upper:]]\{0,1\}[[:lower:]]\{1,\}$' |\ grep -v -e '^.\{1,4\}$' -e '^.\{16,\}$' |\ sort -f |\ uniq -c |\ awk '$1 == 1 { print $2; }' Then, go through the results manually and fix the most obvious typos in the non-vendored code. Change-Id: I3cb5830a176850e1a0584b8a40b47bde7b260eae Reviewed-on: https://go-review.googlesource.com/c/go/+/193848 Reviewed-by: Robert Griesemer <gri@golang.org>
This commit is contained in:
parent
51f400b8b8
commit
cfa6449e5b
2 changed files with 2 additions and 2 deletions
|
@ -991,7 +991,7 @@ func mutualProtocol(protos, preferenceProtos []string) (string, bool) {
|
||||||
return protos[0], true
|
return protos[0], true
|
||||||
}
|
}
|
||||||
|
|
||||||
// hostnameInSNI converts name into an approriate hostname for SNI.
|
// hostnameInSNI converts name into an appropriate hostname for SNI.
|
||||||
// Literal IP addresses and absolute FQDNs are not permitted as SNI values.
|
// Literal IP addresses and absolute FQDNs are not permitted as SNI values.
|
||||||
// See RFC 6066, Section 3.
|
// See RFC 6066, Section 3.
|
||||||
func hostnameInSNI(name string) string {
|
func hostnameInSNI(name string) string {
|
||||||
|
|
2
prf.go
2
prf.go
|
@ -263,7 +263,7 @@ func (h *finishedHash) discardHandshakeBuffer() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// noExportedKeyingMaterial is used as a value of
|
// noExportedKeyingMaterial is used as a value of
|
||||||
// ConnectionState.ekm when renegotation is enabled and thus
|
// ConnectionState.ekm when renegotiation is enabled and thus
|
||||||
// we wish to fail all key-material export requests.
|
// we wish to fail all key-material export requests.
|
||||||
func noExportedKeyingMaterial(label string, context []byte, length int) ([]byte, error) {
|
func noExportedKeyingMaterial(label string, context []byte, length int) ([]byte, error) {
|
||||||
return nil, errors.New("crypto/tls: ExportKeyingMaterial is unavailable when renegotiation is enabled")
|
return nil, errors.New("crypto/tls: ExportKeyingMaterial is unavailable when renegotiation is enabled")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue