Files
quic-go/quic_linux_test.go
Marten Seemann 08be0f73c0 ci: stop using Ginkgo test command (#5194)
* ci: stop using Ginkgo test command

* ci: remove integrationtest directory for unit tests
2025-06-02 04:38:05 +02:00

13 lines
155 B
Go

//go:build linux
package quic
import (
"fmt"
)
func init() {
major, minor := kernelVersion()
fmt.Printf("Kernel Version: %d.%d\n\n", major, minor)
}