diff options
| author | Brian Carlstrom <bdc@google.com> | 2010-02-10 22:56:47 -0800 |
|---|---|---|
| committer | Brian Carlstrom <bdc@google.com> | 2010-02-25 15:53:05 -0800 |
| commit | e065179a12bcd7a089f5e176388921b1c12efa33 (patch) | |
| tree | 7dfc7344bb5673eb6d5431578e8418e53da827c1 /libnativehelper | |
| parent | 60a65773a7199f0a6b8f36bba00f11b84f8c0227 (diff) | |
| download | android_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.c | 7 |
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) |
