1//go:build !go1.21
2
3// For go1.20 and earlier.
4
5package tlsrpt
6
7import (
8 "fmt"
9)
10
11// FormatAlert formats a TLS alert in the form "alert-<num>".
12func FormatAlert(alert uint8) string {
13 return fmt.Sprintf("alert-%d", alert)
14}
15