projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb7ece1
)
Disable compression for DTLS.
author
Dr. Stephen Henson
<steve@openssl.org>
Tue, 19 Mar 2013 13:43:06 +0000
(13:43 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Tue, 19 Mar 2013 13:43:06 +0000
(13:43 +0000)
The only standard compression method is stateful and is incompatible with
DTLS.
ssl/ssl_lib.c
patch
|
blob
|
history
diff --git
a/ssl/ssl_lib.c
b/ssl/ssl_lib.c
index 1de2625c586f360d919256151cd1010c06665666..c3b40323687cd0ddbd733044b83319150f00c9a8 100644
(file)
--- a/
ssl/ssl_lib.c
+++ b/
ssl/ssl_lib.c
@@
-1865,7
+1865,9
@@
SSL_CTX *SSL_CTX_new(const SSL_METHOD *meth)
CRYPTO_new_ex_data(CRYPTO_EX_INDEX_SSL_CTX, ret, &ret->ex_data);
ret->extra_certs=NULL;
- ret->comp_methods=SSL_COMP_get_compression_methods();
+ /* No compression for DTLS */
+ if (!(meth->ssl3_enc->enc_flags & SSL_ENC_FLAG_DTLS))
+ ret->comp_methods=SSL_COMP_get_compression_methods();
ret->max_send_fragment = SSL3_RT_MAX_PLAIN_LENGTH;