Home
last modified time | relevance | path

Searched refs:alert_descr (Results 1 – 2 of 2) sorted by relevance

/third_party/openssl/ssl/record/
Drec_layer_d1.c553 unsigned int alert_level, alert_descr; in dtls1_read_bytes() local
560 || !PACKET_get_1(&alert, &alert_descr) in dtls1_read_bytes()
576 j = (alert_level << 8) | alert_descr; in dtls1_read_bytes()
581 s->s3.warn_alert = alert_descr; in dtls1_read_bytes()
591 if (alert_descr == SSL_AD_CLOSE_NOTIFY) { in dtls1_read_bytes()
612 s->s3.fatal_alert = alert_descr; in dtls1_read_bytes()
614 SSL_AD_REASON_OFFSET + alert_descr, in dtls1_read_bytes()
615 "SSL alert number %d", alert_descr); in dtls1_read_bytes()
Drec_layer_s3.c1547 unsigned int alert_level, alert_descr; in ssl3_read_bytes() local
1554 || !PACKET_get_1(&alert, &alert_descr) in ssl3_read_bytes()
1570 j = (alert_level << 8) | alert_descr; in ssl3_read_bytes()
1575 || (is_tls13 && alert_descr == SSL_AD_USER_CANCELLED)) { in ssl3_read_bytes()
1576 s->s3.warn_alert = alert_descr; in ssl3_read_bytes()
1591 if (is_tls13 && alert_descr == SSL_AD_USER_CANCELLED) { in ssl3_read_bytes()
1593 } else if (alert_descr == SSL_AD_CLOSE_NOTIFY in ssl3_read_bytes()
1599 s->s3.fatal_alert = alert_descr; in ssl3_read_bytes()
1601 SSL_AD_REASON_OFFSET + alert_descr, in ssl3_read_bytes()
1602 "SSL alert number %d", alert_descr); in ssl3_read_bytes()
[all …]