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

Side by Side Diff: third_party/netty-tcnative/README.chromium

Issue 1537473002: [third-party] Netty fork of Tomcat Native (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed open source license review comments Created 4 years, 11 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
OLDNEW
(Empty)
1 Name: Tomcat Native Fork for Netty
2 Short Name: netty-tcnative
3 URL: https://github.com/netty/netty-tcnative
4 SHA: 856865181ca38c07b7d2be619903ee98f6f77a23 netty-tcnative-1.1.33.zip
5 Version: 1.1.33
6 Date: October 13, 2015
7 Revision: 2aa47be27783ec31086ca9881402f845543de4e6
8 License: Apache 2.0
9 License File: NOT_SHIPPED
10 Security Critical: no
11 The library is not security critical because it is used for tests only.
12 Do not link it into production code.
13
14 Description:
15 netty-tcnative is a fork of Tomcat Native. It includes a set of changes cont ributed
16 by Twitter, Inc, such as:
17
18 Simplified distribution and linkage of native library
19 Complete mavenization of the project
20 Improved OpenSSL support
21
22 Local Modifications:
23
24 diff -ruN ./original/src/main/c/ssl.c ./src/third_party/netty-tcnative/src/c/ssl .c
25 --- ./original/src/main/c/ssl.c 2015-10-13 08:36:59.000000000 -0400
26 +++ ./src/third_party/netty-tcnative/src/c/ssl.c 2016-01-04 10:18:31.7297 65992 -0500
27 @@ -1821,7 +1821,7 @@
28 verify = SSL_VERIFY_NONE;
29
30 UNREFERENCED(o);
31 - TCN_ASSERT(ctx != 0);
32 + TCN_ASSERT(c->ctx != 0);
33 c->verify_mode = level;
34
35 if (c->verify_mode == SSL_CVERIFY_UNSET)
36
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698