You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2015/12/03 18:05:59 UTC

svn commit: r1717806 - /tomcat/trunk/java/org/apache/tomcat/jni/SSL.java

Author: remm
Date: Thu Dec  3 17:05:59 2015
New Revision: 1717806

URL: http://svn.apache.org/viewvc?rev=1717806&view=rev
Log:
Add matching renegotiate method. Note that this will cause an exception without a new native, but however using it in the SSL engine right now will already cause an exception, so no real change.

Modified:
    tomcat/trunk/java/org/apache/tomcat/jni/SSL.java

Modified: tomcat/trunk/java/org/apache/tomcat/jni/SSL.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/jni/SSL.java?rev=1717806&r1=1717805&r2=1717806&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/jni/SSL.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/jni/SSL.java Thu Dec  3 17:05:59 2015
@@ -517,6 +517,12 @@ public final class SSL {
     public static native int doHandshake(long ssl);
 
     /**
+     * SSL_renegotiate
+     * @param ssl the SSL instance (SSL *)
+     */
+    public static native int renegotiate(long ssl);
+
+    /**
      * SSL_in_init.
      * @param SSL
      */



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org