Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(375)

Side by Side Diff: patches/openssl_no_dtls1.patch

Issue 10911247: Upstream openssl to version 1.0.1c (Closed) Base URL: http://src.chromium.org/svn/trunk/deps/third_party/openssl/
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « patches/npn.patch ('k') | patches/progs.patch » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 --- openssl-1.0.0f.orig/ssl/ssl_lib.c 2012-01-04 22:13:21.000000000 +0000
2 +++ openssl-1.0.0f/ssl/ssl_lib.c 2012-01-04 22:13:21.000000000 +0000
3 @@ -1063,8 +1063,10 @@ long SSL_ctrl(SSL *s,int cmd,long larg,v
4 s->max_cert_list=larg;
5 return(l);
6 case SSL_CTRL_SET_MTU:
7 +#ifndef OPENSSL_NO_DTLS1
8 if (larg < (long)dtls1_min_mtu())
9 return 0;
10 +#endif
11
12 if (SSL_version(s) == DTLS1_VERSION ||
13 SSL_version(s) == DTLS1_BAD_VER)
OLDNEW
« no previous file with comments | « patches/npn.patch ('k') | patches/progs.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698