Loading ssl/d1_pkt.c +1 −3 Original line number Diff line number Diff line Loading @@ -1557,9 +1557,7 @@ int do_dtls1_write(SSL *s, int type, const unsigned char *buf, unsigned int len, * we haven't decided which version to use yet send back using * version 1.0 header: otherwise some clients will ignore it. */ if (s->state == DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B && s->method->version == DTLS_ANY_VERSION && s->client_version == DTLS1_VERSION) if (s->method->version == DTLS_ANY_VERSION) { *(p++)=DTLS1_VERSION>>8; *(p++)=DTLS1_VERSION&0xff; Loading ssl/s3_clnt.c +1 −1 Original line number Diff line number Diff line Loading @@ -928,7 +928,7 @@ int ssl3_get_server_hello(SSL *s) /* Hello verify request and/or server hello version may not * match so set first packet if we're negotiating version. */ if (s->method->version == DTLS_ANY_VERSION) if (SSL_IS_DTLS(s)) s->first_packet = 1; n=s->method->ssl_get_message(s, Loading Loading
ssl/d1_pkt.c +1 −3 Original line number Diff line number Diff line Loading @@ -1557,9 +1557,7 @@ int do_dtls1_write(SSL *s, int type, const unsigned char *buf, unsigned int len, * we haven't decided which version to use yet send back using * version 1.0 header: otherwise some clients will ignore it. */ if (s->state == DTLS1_ST_SW_HELLO_VERIFY_REQUEST_B && s->method->version == DTLS_ANY_VERSION && s->client_version == DTLS1_VERSION) if (s->method->version == DTLS_ANY_VERSION) { *(p++)=DTLS1_VERSION>>8; *(p++)=DTLS1_VERSION&0xff; Loading
ssl/s3_clnt.c +1 −1 Original line number Diff line number Diff line Loading @@ -928,7 +928,7 @@ int ssl3_get_server_hello(SSL *s) /* Hello verify request and/or server hello version may not * match so set first packet if we're negotiating version. */ if (s->method->version == DTLS_ANY_VERSION) if (SSL_IS_DTLS(s)) s->first_packet = 1; n=s->method->ssl_get_message(s, Loading