mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
Ignored these linknames which have not worked for a while: github.com/xtls/xray-core: context.newCancelCtx removed in CL 463999 (Feb 2023) github.com/u-root/u-root: funcPC removed in CL 513837 (Jul 2023) tinygo.org/x/drivers: net.useNetdev never existed For #67401. Change-Id: I9293f4ef197bb5552b431de8939fa94988a060ce Reviewed-on: https://go-review.googlesource.com/c/go/+/587576 Auto-Submit: Russ Cox <rsc@golang.org> Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
23 lines
782 B
Go
23 lines
782 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 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)
|