提交 c81898cb 编写于 作者: D Dr. Stephen Henson

Update from stable branch.

上级 330591fd
...@@ -1011,6 +1011,7 @@ int dtls1_send_certificate_request(SSL *s) ...@@ -1011,6 +1011,7 @@ int dtls1_send_certificate_request(SSL *s)
STACK_OF(X509_NAME) *sk=NULL; STACK_OF(X509_NAME) *sk=NULL;
X509_NAME *name; X509_NAME *name;
BUF_MEM *buf; BUF_MEM *buf;
unsigned int msg_len;
if (s->state == SSL3_ST_SW_CERT_REQ_A) if (s->state == SSL3_ST_SW_CERT_REQ_A)
{ {
...@@ -1088,6 +1089,10 @@ int dtls1_send_certificate_request(SSL *s) ...@@ -1088,6 +1089,10 @@ int dtls1_send_certificate_request(SSL *s)
#endif #endif
/* XDTLS: set message header ? */ /* XDTLS: set message header ? */
msg_len = s->init_num - DTLS1_HM_HEADER_LENGTH;
dtls1_set_message_header(s, s->init_buf->data,
SSL3_MT_CERTIFICATE_REQUEST, msg_len, 0, msg_len);
/* buffer the message to handle re-xmits */ /* buffer the message to handle re-xmits */
dtls1_buffer_message(s, 0); dtls1_buffer_message(s, 0);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册