Home | History | Annotate | Download | only in tls

Lines Matching refs:alert

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