forked from quic-go/quic-go
This test used to take 15-30s locally, and even more on CI. It now runs in less than 1ms.
10 lines
133 B
Go
10 lines
133 B
Go
//go:build !go1.25
|
|
|
|
package self_test
|
|
|
|
import "crypto/tls"
|
|
|
|
func getCurveID(connState tls.ConnectionState) tls.CurveID {
|
|
return 0
|
|
}
|