summaryrefslogtreecommitdiffstats
path: root/libnativehelper
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2010-02-10 22:56:47 -0800
committerBrian Carlstrom <bdc@google.com>2010-02-25 15:53:05 -0800
commite065179a12bcd7a089f5e176388921b1c12efa33 (patch)
tree7dfc7344bb5673eb6d5431578e8418e53da827c1 /libnativehelper
parent60a65773a7199f0a6b8f36bba00f11b84f8c0227 (diff)
downloadandroid_dalvik-e065179a12bcd7a089f5e176388921b1c12efa33.tar.gz
android_dalvik-e065179a12bcd7a089f5e176388921b1c12efa33.tar.bz2
android_dalvik-e065179a12bcd7a089f5e176388921b1c12efa33.zip
First pass at reorganizing org.apache.harmony.xnet.provider.jsse native code into a single file.
At enh's suggestion, I'm consoldiating the OpenSSL related native code into a single wrapper class NativeCrypto. This changes is the firs step, combining the cpp code into a single NativeCode.cpp. The next step will involved introducting a single SSL_CTX in NativeCode and cleaning up SSL_CTX use. As part of this, I'll start moving the native wrappers to from various OpenSSL*.java classes into NativeCode.
Diffstat (limited to 'libnativehelper')
-rw-r--r--libnativehelper/Register.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libnativehelper/Register.c b/libnativehelper/Register.c
index 742797210..92c0e9d6e 100644
--- a/libnativehelper/Register.c
+++ b/libnativehelper/Register.c
@@ -59,13 +59,6 @@ int jniRegisterSystemMethods(JNIEnv* env)
if (register_org_apache_harmony_text_BidiWrapper(env) != 0)
goto bail;
- if (register_org_apache_harmony_xnet_provider_jsse_OpenSSLSocketImpl(env) != 0)
- goto bail;
- if (register_org_apache_harmony_xnet_provider_jsse_OpenSSLServerSocketImpl(env) != 0)
- goto bail;
- if (register_org_apache_harmony_xnet_provider_jsse_OpenSSLSessionImpl(env) != 0)
- goto bail;
-
if (register_org_openssl_NativeBN(env) != 0)
goto bail;
if (register_org_apache_harmony_xnet_provider_jsse_NativeCrypto(env) != 0)