Index: third_party/netty-tcnative/README.chromium |
diff --git a/third_party/netty-tcnative/README.chromium b/third_party/netty-tcnative/README.chromium |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1bc160973d4905844b0f32befd08d3540c4cf69d |
--- /dev/null |
+++ b/third_party/netty-tcnative/README.chromium |
@@ -0,0 +1,34 @@ |
+Name: Tomcat Native Fork for Netty |
+Short Name: netty-tcnative |
+URL: https://github.com/netty/netty-tcnative |
+SHA: 856865181ca38c07b7d2be619903ee98f6f77a23 netty-tcnative-1.1.33.zip |
+Version: 1.1.33 |
+Date: October 13, 2015 |
+Revision: 2aa47be27783ec31086ca9881402f845543de4e6 |
+License: Apache 2.0 |
+License File: NOT_SHIPPED |
+Security Critical: no |
+ |
+Description: |
+ netty-tcnative is a fork of Tomcat Native. It includes a set of changes contributed |
+ by Twitter, Inc, such as: |
+ |
+ Simplified distribution and linkage of native library |
+ Complete mavenization of the project |
+ Improved OpenSSL support |
+ |
+Local Modifications: |
+ |
+diff -ruN ./original/src/main/c/ssl.c ./src/third_party/netty-tcnative/src/c/ssl.c |
+--- ./original/src/main/c/ssl.c 2015-10-13 08:36:59.000000000 -0400 |
++++ ./src/third_party/netty-tcnative/src/c/ssl.c 2016-01-04 10:18:31.729765992 -0500 |
+@@ -1821,7 +1821,7 @@ |
+ verify = SSL_VERIFY_NONE; |
+ |
+ UNREFERENCED(o); |
+- TCN_ASSERT(ctx != 0); |
++ TCN_ASSERT(c->ctx != 0); |
+ c->verify_mode = level; |
+ |
+ if (c->verify_mode == SSL_CVERIFY_UNSET) |
+ |