mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 12:37:35 +03:00
For #67401. Change-Id: Ifea84af92017b405466937f50fb8f28e6893c8cb Reviewed-on: https://go-review.googlesource.com/c/go/+/587220 Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Russ Cox <rsc@golang.org>
24 lines
812 B
Go
24 lines
812 B
Go
// Copyright 2024 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package tls
|
|
|
|
import _ "unsafe"
|
|
|
|
// As of Go 1.22, the symbols below are found to be pulled via
|
|
// linkname in the wild. We provide a push linkname here, to
|
|
// keep them accessible with pull linknames.
|
|
// This may change in the future. Please do not depend on them
|
|
// in new code.
|
|
|
|
//go:linkname aeadAESGCMTLS13
|
|
//go:linkname cipherSuiteTLS13ByID
|
|
//go:linkname errShutdown
|
|
|
|
// The compiler doesn't allow linknames on methods, for good reasons.
|
|
// We use this trick to push linknames of the methods.
|
|
// Do not call them in this package.
|
|
|
|
//go:linkname badlinkname_halfConn_incSeq crypto/tls.(*halfConn).incSeq
|
|
func badlinkname_halfConn_incSeq(*halfConn)
|