Files
quic-go/integrationtests/self/self_go124_test.go
Marten Seemann 49d41dc218 use synctest for the handshake drop test (#5397)
This test used to take 15-30s locally, and even more on CI. It now runs in less than 1ms.
2025-10-23 16:56:35 +02:00

10 lines
133 B
Go

//go:build !go1.25
package self_test
import "crypto/tls"
func getCurveID(connState tls.ConnectionState) tls.CurveID {
return 0
}