Home | History | Annotate | Download | only in runner

Lines Matching refs:alert

9 type alert uint8
12 // alert level
18 alertCloseNotify alert = 0
19 alertEndOfEarlyData alert = 1
20 alertUnexpectedMessage alert = 10
21 alertBadRecordMAC alert = 20
22 alertDecryptionFailed alert = 21
23 alertRecordOverflow alert = 22
24 alertDecompressionFailure alert = 30
25 alertHandshakeFailure alert = 40
26 alertNoCertificate alert = 41
27 alertBadCertificate alert = 42
28 alertUnsupportedCertificate alert = 43
29 alertCertificateRevoked alert = 44
30 alertCertificateExpired alert = 45
31 alertCertificateUnknown alert = 46
32 alertIllegalParameter alert = 47
33 alertUnknownCA alert = 48
34 alertAccessDenied alert = 49
35 alertDecodeError alert = 50
36 alertDecryptError alert = 51
37 alertProtocolVersion alert = 70
38 alertInsufficientSecurity alert = 71
39 alertInternalError alert = 80
40 alertInappropriateFallback alert = 86
41 alertUserCanceled alert = 90
42 alertNoRenegotiation alert = 100
43 alertMissingExtension alert = 109
44 alertUnsupportedExtension alert = 110
45 alertUnrecognizedName alert = 112
46 alertUnknownPSKIdentity alert = 115
47 alertCertificateRequired alert = 116
50 var alertText = map[alert]string{
83 func (e alert) String() string {
88 return "alert(" + strconv.Itoa(int(e)) + ")"
91 func (e alert) Error() string {