Latest update.
This commit is contained in:
+10
-10
@@ -18,14 +18,14 @@ int ssl3_do_change_cipher_spec(SSL *s)
|
||||
else
|
||||
i = SSL3_CHANGE_CIPHER_CLIENT_READ;
|
||||
|
||||
if (s->s3->tmp.key_block == NULL) {
|
||||
if (s->s3.tmp.key_block == NULL) {
|
||||
if (s->session == NULL || s->session->master_key_length == 0) {
|
||||
/* might happen if dtls1_read_bytes() calls this */
|
||||
SSLerr(SSL_F_SSL3_DO_CHANGE_CIPHER_SPEC, SSL_R_CCS_RECEIVED_EARLY);
|
||||
return 0;
|
||||
}
|
||||
|
||||
s->session->cipher = s->s3->tmp.new_cipher;
|
||||
s->session->cipher = s->s3.tmp.new_cipher;
|
||||
if (!s->method->ssl3_enc->setup_key_block(s)) {
|
||||
/* SSLfatal() already called */
|
||||
return 0;
|
||||
@@ -56,9 +56,9 @@ int ssl3_send_alert(SSL *s, int level, int desc)
|
||||
if ((level == SSL3_AL_FATAL) && (s->session != NULL))
|
||||
SSL_CTX_remove_session(s->session_ctx, s->session);
|
||||
|
||||
s->s3->alert_dispatch = 1;
|
||||
s->s3->send_alert[0] = level;
|
||||
s->s3->send_alert[1] = desc;
|
||||
s->s3.alert_dispatch = 1;
|
||||
s->s3.send_alert[0] = level;
|
||||
s->s3.send_alert[1] = desc;
|
||||
if (!RECORD_LAYER_write_pending(&s->rlayer)) {
|
||||
/* data still being written out? */
|
||||
return s->method->ssl_dispatch_alert(s);
|
||||
@@ -77,12 +77,12 @@ int ssl3_dispatch_alert(SSL *s)
|
||||
void (*cb) (const SSL *ssl, int type, int val) = NULL;
|
||||
size_t written;
|
||||
|
||||
s->s3->alert_dispatch = 0;
|
||||
s->s3.alert_dispatch = 0;
|
||||
alertlen = 2;
|
||||
i = do_ssl3_write(s, SSL3_RT_ALERT, &s->s3->send_alert[0], &alertlen, 1, 0,
|
||||
i = do_ssl3_write(s, SSL3_RT_ALERT, &s->s3.send_alert[0], &alertlen, 1, 0,
|
||||
&written);
|
||||
if (i <= 0) {
|
||||
s->s3->alert_dispatch = 1;
|
||||
s->s3.alert_dispatch = 1;
|
||||
} else {
|
||||
/*
|
||||
* Alert sent to BIO - now flush. If the message does not get sent due
|
||||
@@ -91,7 +91,7 @@ int ssl3_dispatch_alert(SSL *s)
|
||||
(void)BIO_flush(s->wbio);
|
||||
|
||||
if (s->msg_callback)
|
||||
s->msg_callback(1, s->version, SSL3_RT_ALERT, s->s3->send_alert,
|
||||
s->msg_callback(1, s->version, SSL3_RT_ALERT, s->s3.send_alert,
|
||||
2, s, s->msg_callback_arg);
|
||||
|
||||
if (s->info_callback != NULL)
|
||||
@@ -100,7 +100,7 @@ int ssl3_dispatch_alert(SSL *s)
|
||||
cb = s->ctx->info_callback;
|
||||
|
||||
if (cb != NULL) {
|
||||
j = (s->s3->send_alert[0] << 8) | s->s3->send_alert[1];
|
||||
j = (s->s3.send_alert[0] << 8) | s->s3.send_alert[1];
|
||||
cb(s, SSL_CB_WRITE_ALERT, j);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user