()
| 87 | } |
| 88 | |
| 89 | func (e alert) String() string { |
| 90 | s, ok := alertText[e] |
| 91 | if ok { |
| 92 | return "tls: " + s |
| 93 | } |
| 94 | return "tls: alert(" + strconv.Itoa(int(e)) + ")" |
| 95 | } |
| 96 | |
| 97 | func (e alert) Error() string { |
| 98 | return e.String() |
no outgoing calls
no test coverage detected