You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by mt...@apache.org on 2006/11/28 10:48:31 UTC

svn commit: r479966 - /tomcat/connectors/trunk/jni/native/src/sslnetwork.c

Author: mturk
Date: Tue Nov 28 01:48:30 2006
New Revision: 479966

URL: http://svn.apache.org/viewvc?view=rev&rev=479966
Log:
Add missing stub for SSLSocket.handskake if the
OpenSSL was not compiled in.

Modified:
    tomcat/connectors/trunk/jni/native/src/sslnetwork.c

Modified: tomcat/connectors/trunk/jni/native/src/sslnetwork.c
URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jni/native/src/sslnetwork.c?view=diff&rev=479966&r1=479965&r2=479966
==============================================================================
--- tomcat/connectors/trunk/jni/native/src/sslnetwork.c (original)
+++ tomcat/connectors/trunk/jni/native/src/sslnetwork.c Tue Nov 28 01:48:30 2006
@@ -567,6 +567,13 @@
  * Create empty stubs.
  */
 
+TCN_IMPLEMENT_CALL(jint, SSLSocket, handshake)(TCN_STDARGS, jlong sock)
+{
+    UNREFERENCED_STDARGS;
+    UNREFERENCED(sock);
+    return (jint)APR_ENOTIMPL;
+}
+
 TCN_IMPLEMENT_CALL(jint, SSLSocket, attach)(TCN_STDARGS, jlong ctx,
                                             jlong sock)
 {



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